diff options
author | James Almer <jamrial@gmail.com> | 2015-10-13 20:03:52 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-10-13 20:21:33 -0300 |
commit | 74a87ae21075d694ada0d19705d9ec40b39d6037 (patch) | |
tree | 0d1280bed1823d5624ae7bb7cd1ee96adb675d69 /libavcodec/x86/vp9itxfm_16bpp.asm | |
parent | 234369d0fd04f1ddfc10d6a73a1a0aa5cb7ea17c (diff) | |
download | ffmpeg-74a87ae21075d694ada0d19705d9ec40b39d6037.tar.gz |
x86/vp9itxfm: fix register clobbering in ff_vp9_idct_idct_4x4_add_12_sse2
Reviewed-by: Henrik Gramner <henrik@gramner.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/x86/vp9itxfm_16bpp.asm')
-rw-r--r-- | libavcodec/x86/vp9itxfm_16bpp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/vp9itxfm_16bpp.asm b/libavcodec/x86/vp9itxfm_16bpp.asm index 06b39ff9e5..902685edf6 100644 --- a/libavcodec/x86/vp9itxfm_16bpp.asm +++ b/libavcodec/x86/vp9itxfm_16bpp.asm @@ -406,7 +406,7 @@ IADST4_FN iadst, IADST4, iadst, IADST4 %endmacro INIT_XMM sse2 -cglobal vp9_idct_idct_4x4_add_12, 4, 4, 6, dst, stride, block, eob +cglobal vp9_idct_idct_4x4_add_12, 4, 4, 8, dst, stride, block, eob cmp eobd, 1 jg .idctfull |