diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-07 15:42:52 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2015-10-13 11:05:59 -0400 |
commit | cb054d061a3e0da54309367b8b2b3070376ae752 (patch) | |
tree | 5979075886159dd1923edf638532beede26f39b0 /libavcodec/x86/vp9dsp_init_16bpp_template.c | |
parent | e0610787b2ef8053ee7efeb14393ba4469d68237 (diff) | |
download | ffmpeg-cb054d061a3e0da54309367b8b2b3070376ae752.tar.gz |
vp9: add 10/12bpp sse2 SIMD versions of iadst8x8.
Diffstat (limited to 'libavcodec/x86/vp9dsp_init_16bpp_template.c')
-rw-r--r-- | libavcodec/x86/vp9dsp_init_16bpp_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/vp9dsp_init_16bpp_template.c b/libavcodec/x86/vp9dsp_init_16bpp_template.c index 6c8b0b1d46..55649dfaa1 100644 --- a/libavcodec/x86/vp9dsp_init_16bpp_template.c +++ b/libavcodec/x86/vp9dsp_init_16bpp_template.c @@ -134,7 +134,7 @@ decl_itxfm_func(idct, idct, 4, BPC, sse2); 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_func(idct, idct, 8, BPC, sse2); +decl_itxfm_funcs(8, BPC, sse2); #endif /* HAVE_YASM */ av_cold void INIT_FUNC(VP9DSPContext *dsp, int bitexact) @@ -205,7 +205,7 @@ av_cold void INIT_FUNC(VP9DSPContext *dsp, int bitexact) #else init_itx_funcs(TX_4X4, 4, 12, sse2); #endif - init_itx_func(TX_8X8, DCT_DCT, idct, idct, 8, BPC, sse2); + init_itx_funcs(TX_8X8, 8, BPC, sse2); } if (EXTERNAL_SSSE3(cpu_flags)) { |