Commit 9181c76d authored by mru's avatar mru

ARM: fix build for darwin/iphone

References to external symbols in asm code need prefixes.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22949 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 38e409eb
...@@ -33,10 +33,10 @@ function ff_rdft_calc_neon, export=1 ...@@ -33,10 +33,10 @@ function ff_rdft_calc_neon, export=1
lsls r6, r6, #31 lsls r6, r6, #31
bne 1f bne 1f
add r0, r4, #20 add r0, r4, #20
bl ff_fft_permute_neon bl X(ff_fft_permute_neon)
add r0, r4, #20 add r0, r4, #20
mov r1, r5 mov r1, r5
bl ff_fft_calc_neon bl X(ff_fft_calc_neon)
1: 1:
ldr r12, [r4, #0] @ nbits ldr r12, [r4, #0] @ nbits
mov r2, #1 mov r2, #1
...@@ -143,9 +143,9 @@ function ff_rdft_calc_neon, export=1 ...@@ -143,9 +143,9 @@ function ff_rdft_calc_neon, export=1
vst1.32 {d22}, [r5,:64] vst1.32 {d22}, [r5,:64]
add r0, r4, #20 add r0, r4, #20
mov r1, r5 mov r1, r5
bl ff_fft_permute_neon bl X(ff_fft_permute_neon)
add r0, r4, #20 add r0, r4, #20
mov r1, r5 mov r1, r5
pop {r4-r8,lr} pop {r4-r8,lr}
b ff_fft_calc_neon b X(ff_fft_calc_neon)
endfunc endfunc
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment