diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-02-05 19:20:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-06 17:37:56 +0100 |
commit | 5eedd36df1089aa0605ddb4c751b310b62f08ac4 (patch) | |
tree | 1a9815ffb4ed96d9b21eb2c9db05f72368012076 /libavcodec | |
parent | a0d1300f7112e9e4577379669bc44660bb20bda2 (diff) | |
download | ffmpeg-5eedd36df1089aa0605ddb4c751b310b62f08ac4.tar.gz |
x86: hevc_mc: use epel_hv 16-wide function
The epel_hv functions were still relying on only epel_hv 8-wide
being the maximum width instanciated.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/hevcdsp_init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/hevcdsp_init.c b/libavcodec/x86/hevcdsp_init.c index b1533d8f1f..f7b3d0fb46 100644 --- a/libavcodec/x86/hevcdsp_init.c +++ b/libavcodec/x86/hevcdsp_init.c @@ -357,9 +357,9 @@ mc_rep_funcs(epel_v,12, 8, 32, sse4); mc_rep_funcs(epel_v,12, 8, 24, sse4); mc_rep_funcs(epel_v,12, 8, 16, sse4); mc_rep_funcs(epel_v,12, 4, 12, sse4); -mc_rep_funcs(epel_hv, 8, 8, 64, sse4); -mc_rep_funcs(epel_hv, 8, 8, 48, sse4); -mc_rep_funcs(epel_hv, 8, 8, 32, sse4); +mc_rep_funcs(epel_hv, 8, 16, 64, sse4); +mc_rep_funcs(epel_hv, 8, 16, 48, sse4); +mc_rep_funcs(epel_hv, 8, 16, 32, sse4); mc_rep_funcs(epel_hv, 8, 8, 24, sse4); mc_rep_funcs2(epel_hv,8, 8, 4, 12, sse4); mc_rep_funcs(epel_hv,10, 8, 64, sse4); |