diff options
author | Måns Rullgård <mans@mansr.com> | 2010-04-22 21:19:32 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-04-22 21:19:32 +0000 |
commit | 84368aa629fb3b98768142439df6a15c3fca0dfe (patch) | |
tree | 13ac5ee98b38207f9e2482f0451fcd1585e61538 | |
parent | 2c4b87ea0e61cc762de7536dbae743effc12ba08 (diff) | |
download | ffmpeg-84368aa629fb3b98768142439df6a15c3fca0dfe.tar.gz |
ARM: fix build for darwin/iphone
References to external symbols in asm code need prefixes.
Originally committed as revision 22949 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/arm/rdft_neon.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/arm/rdft_neon.S b/libavcodec/arm/rdft_neon.S index 4f8f529ee9..4f8a1032cc 100644 --- a/libavcodec/arm/rdft_neon.S +++ b/libavcodec/arm/rdft_neon.S @@ -33,10 +33,10 @@ function ff_rdft_calc_neon, export=1 lsls r6, r6, #31 bne 1f add r0, r4, #20 - bl ff_fft_permute_neon + bl X(ff_fft_permute_neon) add r0, r4, #20 mov r1, r5 - bl ff_fft_calc_neon + bl X(ff_fft_calc_neon) 1: ldr r12, [r4, #0] @ nbits mov r2, #1 @@ -143,9 +143,9 @@ function ff_rdft_calc_neon, export=1 vst1.32 {d22}, [r5,:64] add r0, r4, #20 mov r1, r5 - bl ff_fft_permute_neon + bl X(ff_fft_permute_neon) add r0, r4, #20 mov r1, r5 pop {r4-r8,lr} - b ff_fft_calc_neon + b X(ff_fft_calc_neon) endfunc |