diff options
author | Måns Rullgård <mans@mansr.com> | 2008-12-30 03:13:52 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-12-30 03:13:52 +0000 |
commit | 172a39d13c77bda27ac77535d1df45f85b751fcb (patch) | |
tree | decec1efc808e094aa37f44bb94d6c43da57de16 /libavcodec/arm/simple_idct_neon.S | |
parent | 2e35e68434352d44ea133b9fa0f623c87c6a95b6 (diff) | |
download | ffmpeg-172a39d13c77bda27ac77535d1df45f85b751fcb.tar.gz |
ARM: work around linker bug with movw/movt relocations in shared libs
Originally committed as revision 16395 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/simple_idct_neon.S')
-rw-r--r-- | libavcodec/arm/simple_idct_neon.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/arm/simple_idct_neon.S b/libavcodec/arm/simple_idct_neon.S index e05c5fcb8b..e7099a221e 100644 --- a/libavcodec/arm/simple_idct_neon.S +++ b/libavcodec/arm/simple_idct_neon.S @@ -239,8 +239,7 @@ idct_coeff_neon: pld [\data] pld [\data, #64] vpush {d8-d15} - movw r3, #:lower16:idct_coeff_neon - movt r3, #:upper16:idct_coeff_neon + movrel r3, idct_coeff_neon vld1.64 {d0,d1}, [r3,:128] .endm |