diff options
author | Martin Storsjö <martin@martin.st> | 2016-09-30 12:05:55 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-10-10 14:57:53 +0300 |
commit | 9b2ccafb480c94fd09cfb24306d5296dc013cf5b (patch) | |
tree | 11210da8426de8a5d5145ed3988ca60990905ea7 | |
parent | cbd84b8a51aa656d71b7d6ed44bd89041ff081a8 (diff) | |
download | ffmpeg-9b2ccafb480c94fd09cfb24306d5296dc013cf5b.tar.gz |
aarch64: Add missing sign extension in ff_h264_idct8_add_neon
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/aarch64/h264idct_neon.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aarch64/h264idct_neon.S b/libavcodec/aarch64/h264idct_neon.S index 5395e146ef..ee23977271 100644 --- a/libavcodec/aarch64/h264idct_neon.S +++ b/libavcodec/aarch64/h264idct_neon.S @@ -264,6 +264,7 @@ endfunc function ff_h264_idct8_add_neon, export=1 movi v19.8H, #0 + sxtw x2, w2 ld1 {v24.8H, v25.8H}, [x1] st1 {v19.8H}, [x1], #16 st1 {v19.8H}, [x1], #16 |