diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-06-23 16:32:31 +0200 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-06-26 09:55:23 +0200 |
commit | db5bf64b214d9888c8cf30a8235d0655a63139d7 (patch) | |
tree | fd647da623c1b34010d35d6071098ee4ca0812d9 /libavcodec | |
parent | 915be7e13a0ee6e7e53f5044d701141a1cc11382 (diff) | |
download | ffmpeg-db5bf64b214d9888c8cf30a8235d0655a63139d7.tar.gz |
lavc/x86: clear r2 higher bits in ff_sbr_sum_square
Suggested-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/sbrdsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/sbrdsp.asm b/libavcodec/x86/sbrdsp.asm index 07a412b2ae..d0f774b277 100644 --- a/libavcodec/x86/sbrdsp.asm +++ b/libavcodec/x86/sbrdsp.asm @@ -38,7 +38,7 @@ SECTION .text INIT_XMM sse cglobal sbr_sum_square, 2, 3, 6 - mov r2, r1 + mov r2d, r1d xorps m0, m0 xorps m1, m1 sar r2, 3 |