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 /libavcodec/arm/mpegvideo_neon.S | |
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 'libavcodec/arm/mpegvideo_neon.S')
-rw-r--r-- | libavcodec/arm/mpegvideo_neon.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/mpegvideo_neon.S b/libavcodec/arm/mpegvideo_neon.S index 0c6c428854..3e1f7b53e2 100644 --- a/libavcodec/arm/mpegvideo_neon.S +++ b/libavcodec/arm/mpegvideo_neon.S @@ -100,7 +100,7 @@ function ff_dct_unquantize_h263_intra_neon, export=1 smulbb r4, r4, r6 2: lsl r0, r3, #1 add r3, r12, #1 - bl ff_dct_unquantize_h263_neon + bl X(ff_dct_unquantize_h263_neon) vmov.16 d0[0], r4 vst1.16 {d0[0]}, [r5] pop {r4-r6,pc} |