summaryrefslogtreecommitdiff
path: root/libavcodec/utvideo.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-12-23 15:41:51 +0100
committerPaul B Mahol <onemda@gmail.com>2016-12-23 17:44:01 +0100
commitea93052db3594f93f2d10be085a770184da0513d (patch)
tree6128b1b696d84e4cd78f260b34ecbe4a32e372f8 /libavcodec/utvideo.h
parent373f21a91126d052cd310d675f43f548a407649e (diff)
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.h2
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;