diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-12-23 15:41:51 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-12-23 17:44:01 +0100 |
commit | ea93052db3594f93f2d10be085a770184da0513d (patch) | |
tree | 6128b1b696d84e4cd78f260b34ecbe4a32e372f8 /libavcodec/utvideo.h | |
parent | 373f21a91126d052cd310d675f43f548a407649e (diff) | |
download | ffmpeg-ea93052db3594f93f2d10be085a770184da0513d.tar.gz |
avcodec/utvideodec: add SIMD support for median prediction for planar formats
~10% faster overall.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/utvideo.h')
-rw-r--r-- | libavcodec/utvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 49ddf49882..0d1086594a 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -30,6 +30,7 @@ #include "libavutil/common.h" #include "avcodec.h" #include "bswapdsp.h" +#include "huffyuvdsp.h" #include "huffyuvencdsp.h" enum { @@ -69,6 +70,7 @@ typedef struct UtvideoContext { const AVClass *class; AVCodecContext *avctx; BswapDSPContext bdsp; + HuffYUVDSPContext hdspdec; HuffYUVEncDSPContext hdsp; uint32_t frame_info_size, flags, frame_info; |