summaryrefslogtreecommitdiff
path: root/libavcodec/x86/vp9dsp_init_16bpp_template.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-10-06 21:59:10 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-10-13 11:05:59 -0400
commita35f6bdb38aa140ad127f207dbead1a88594915f (patch)
treeda8f731fa01d3a11ca3cec9bfdd263a4768454a4 /libavcodec/x86/vp9dsp_init_16bpp_template.c
parent235e76aeb877bd1b23c12e74588e86752e3dfbe7 (diff)
vp9: add 12bpp sse2 versions of iadst4.
Diffstat (limited to 'libavcodec/x86/vp9dsp_init_16bpp_template.c')
-rw-r--r--libavcodec/x86/vp9dsp_init_16bpp_template.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/vp9dsp_init_16bpp_template.c b/libavcodec/x86/vp9dsp_init_16bpp_template.c
index 35f99b750b..13f2f39c3d 100644
--- a/libavcodec/x86/vp9dsp_init_16bpp_template.c
+++ b/libavcodec/x86/vp9dsp_init_16bpp_template.c
@@ -127,13 +127,13 @@ decl_ipred_fns(tm, BPC, mmxext, sse2);
decl_itxfm_func(iwht, iwht, 4, BPC, mmxext);
#if BPC == 10
decl_itxfm_func(idct, idct, 4, BPC, mmxext);
-decl_itxfm_func(idct, iadst, 4, BPC, sse2);
-decl_itxfm_func(iadst, idct, 4, BPC, sse2);
-decl_itxfm_func(iadst, iadst, 4, BPC, sse2);
decl_itxfm_funcs(4, BPC, ssse3);
#else
decl_itxfm_func(idct, idct, 4, BPC, sse2);
#endif
+decl_itxfm_func(idct, iadst, 4, BPC, sse2);
+decl_itxfm_func(iadst, idct, 4, BPC, sse2);
+decl_itxfm_func(iadst, iadst, 4, BPC, sse2);
#endif /* HAVE_YASM */
av_cold void INIT_FUNC(VP9DSPContext *dsp, int bitexact)
@@ -202,7 +202,7 @@ av_cold void INIT_FUNC(VP9DSPContext *dsp, int bitexact)
init_itx_func(TX_4X4, ADST_ADST, iadst, iadst, 4, 10, sse2);
}
#else
- init_itx_func(TX_4X4, DCT_DCT, idct, idct, 4, 12, sse2);
+ init_itx_funcs(TX_4X4, 4, 12, sse2);
#endif
}