diff options
author | Martin Storsjö <martin@martin.st> | 2014-02-07 12:00:31 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-02-07 15:13:58 +0200 |
commit | 5bcbb516f2ff45290ef7995b081762e668693672 (patch) | |
tree | 0471fd741b672371413f2ecfea198a4f32276d9a /libavresample/arm | |
parent | 5351964a2b524d1cb70c268c3e9436fd2990429b (diff) | |
download | ffmpeg-5bcbb516f2ff45290ef7995b081762e668693672.tar.gz |
arm: Add X() around all references to extern symbols
Don't rely on the fact that an unprefixed label currently exists.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavresample/arm')
-rw-r--r-- | libavresample/arm/audio_convert_neon.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavresample/arm/audio_convert_neon.S b/libavresample/arm/audio_convert_neon.S index 092ce0cfc6..98945c4a64 100644 --- a/libavresample/arm/audio_convert_neon.S +++ b/libavresample/arm/audio_convert_neon.S @@ -133,8 +133,8 @@ function ff_conv_fltp_to_s16_neon, export=1 cmp r3, #2 itt lt ldrlt r1, [r1] - blt ff_conv_flt_to_s16_neon - beq ff_conv_fltp_to_s16_2ch_neon + blt X(ff_conv_flt_to_s16_neon) + beq X(ff_conv_fltp_to_s16_2ch_neon) push {r4-r8, lr} cmp r3, #4 |