diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2014-02-17 21:57:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-18 17:20:14 +0100 |
commit | 7716eda0aad718855547e78f1b5cffde18183aa0 (patch) | |
tree | 22243b9a442b052b37dae2f1930c5019c84467d9 /libavcodec | |
parent | 9bb1af8f36ec666280d5cd3a2d2261abe4187940 (diff) | |
download | ffmpeg-7716eda0aad718855547e78f1b5cffde18183aa0.tar.gz |
vp9/x86: set correct number of registers used in intra pred asm
Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/vp9intrapred.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/vp9intrapred.asm b/libavcodec/x86/vp9intrapred.asm index bb318920f0..3faf1c564d 100644 --- a/libavcodec/x86/vp9intrapred.asm +++ b/libavcodec/x86/vp9intrapred.asm @@ -638,7 +638,7 @@ cglobal vp9_ipred_dl_16x16, 4, 4, 6, dst, stride, l, a RET INIT_XMM %1 -cglobal vp9_ipred_dl_32x32, 4, 4, 8, dst, stride, cnt, a, dst16 +cglobal vp9_ipred_dl_32x32, 4, 5, 8, dst, stride, cnt, a, dst16 mova m5, [pb_1toE_2xF] mova m0, [aq] mova m1, [aq+16] @@ -1344,7 +1344,7 @@ cglobal vp9_ipred_hu_16x16, 3, 4, 5, dst, stride, l RET INIT_XMM %1 -cglobal vp9_ipred_hu_32x32, 3, 3, 7, dst, stride, l +cglobal vp9_ipred_hu_32x32, 3, 7, 7, dst, stride, l mova m0, [lq] mova m1, [lq+16] mova m2, [pb_Fto0] |