diff options
author | Pierre Edouard Lepere <pierre-edouard.lepere@insa-rennes.fr> | 2014-06-18 05:57:16 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-07-26 15:01:01 +0000 |
commit | 1a880b2fb8456ce68eefe5902bac95fea1e6a72d (patch) | |
tree | 665647b909c7d75462ebb9e8425fc230f0f4ca5e /libavcodec/hevcdsp.c | |
parent | 73bb8f61d48dbf7237df2e9cacd037f12b84b00a (diff) | |
download | ffmpeg-1a880b2fb8456ce68eefe5902bac95fea1e6a72d.tar.gz |
hevc: SSE2 and SSSE3 loop filters
Additional contributions by James Almer <jamrial@gmail.com>,
Carl Eugen Hoyos <cehoyos@ag.or.at>, Fiona Glaser <fiona@x264.com> and
Anton Khirnov <anton@khirnov.net>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/hevcdsp.c')
-rw-r--r-- | libavcodec/hevcdsp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c index de8c3d268e..0abee9b1d8 100644 --- a/libavcodec/hevcdsp.c +++ b/libavcodec/hevcdsp.c @@ -187,4 +187,7 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth) HEVC_DSP(8); break; } + + if (ARCH_X86) + ff_hevc_dsp_init_x86(hevcdsp, bit_depth); } |