From 512f3ffe9b4bb86767c2b1176554407c75fe1a5c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 23 Dec 2013 18:42:11 +0100 Subject: dsputil: Split off HuffYUV encoding bits into their own context Also shorten HuffYUV context member names to avoid clutter. --- libavcodec/utvideo.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/utvideo.h') diff --git a/libavcodec/utvideo.h b/libavcodec/utvideo.h index 0a1317e807..a430274a43 100644 --- a/libavcodec/utvideo.h +++ b/libavcodec/utvideo.h @@ -30,6 +30,7 @@ #include "libavutil/common.h" #include "avcodec.h" #include "dsputil.h" +#include "huffyuvencdsp.h" enum { PRED_NONE = 0, @@ -66,6 +67,7 @@ extern const int ff_ut_rgb_order[4]; typedef struct UtvideoContext { AVCodecContext *avctx; DSPContext dsp; + HuffYUVEncDSPContext hdsp; uint32_t frame_info_size, flags, frame_info; int planes; -- cgit v1.2.3