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.h | |
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.h')
-rw-r--r-- | libavcodec/hevcdsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index a5ebb84b6c..aad96db3ad 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -104,6 +104,8 @@ typedef struct HEVCDSPContext { void ff_hevc_dsp_init(HEVCDSPContext *hpc, int bit_depth); +void ff_hevc_dsp_init_x86(HEVCDSPContext *c, const int bit_depth); + extern const int8_t ff_hevc_epel_filters[7][16]; #endif /* AVCODEC_HEVCDSP_H */ |