diff options
author | Martin Storsjö <martin@martin.st> | 2016-11-09 11:54:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-08 18:11:07 +0100 |
commit | da5c8284c02c4ccc3596bc52d54a10166708094f (patch) | |
tree | 87eee3dd58043b5cbe0d36f038905ed7d0a02dfa | |
parent | 4df5a6a26a8aa08bbc6d027c2fb44fcf870e98d7 (diff) | |
download | ffmpeg-da5c8284c02c4ccc3596bc52d54a10166708094f.tar.gz |
aarch64: h264idct: Use the offset parameter to movrel
Signed-off-by: Martin Storsjö <martin@martin.st>
(cherry picked from commit 6a62795d4051f435a9a2c59395d96913693922f8)
Cherry pick Suggested-by: Martin Storsjö
This should fix the build failure on macosx
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/aarch64/h264idct_neon.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aarch64/h264idct_neon.S b/libavcodec/aarch64/h264idct_neon.S index fa414f73b2..e9f5b18af0 100644 --- a/libavcodec/aarch64/h264idct_neon.S +++ b/libavcodec/aarch64/h264idct_neon.S @@ -162,7 +162,7 @@ function ff_h264_idct_add8_neon, export=1 mov w19, w3 // stride movrel x13, X(ff_h264_idct_dc_add_neon) movrel x14, X(ff_h264_idct_add_neon) - movrel x7, scan8+16 + movrel x7, scan8, 16 mov x10, #0 mov x11, #16 1: mov w2, w19 |