diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-07-24 18:42:08 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-12-05 21:11:52 +0100 |
commit | e7078e842d93436edba1f30af1f9869d3913f7fe (patch) | |
tree | 2db50fbd63c9264b9de11ab36c9b3edfe21ce0d1 /libavcodec/hevcdsp.h | |
parent | 0cef06df073934ca08d0357fcbbbcf2bc9b2a0cd (diff) | |
download | ffmpeg-e7078e842d93436edba1f30af1f9869d3913f7fe.tar.gz |
hevcdsp: add x86 SIMD for MC
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r-- | libavcodec/hevcdsp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index 59dd9b25ec..4097233827 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -118,6 +118,9 @@ 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]; +extern const int16_t ff_hevc_epel_coeffs[7][16]; +extern const int8_t ff_hevc_epel_coeffs8[7][16]; +extern const int16_t ff_hevc_qpel_coeffs[3][8]; +extern const int8_t ff_hevc_qpel_coeffs8[3][16]; #endif /* AVCODEC_HEVCDSP_H */ |