From 0d439fbede03854eac8a978cccf21a3425a3c82d Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 7 Jan 2014 12:23:13 +0100 Subject: dsputil: Split off HuffYUV decoding bits into their own context Also shorten HuffYUV context member names to avoid clutter. --- libavcodec/huffyuv.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/huffyuv.h') diff --git a/libavcodec/huffyuv.h b/libavcodec/huffyuv.h index 9c875d5310..14b4abcdfa 100644 --- a/libavcodec/huffyuv.h +++ b/libavcodec/huffyuv.h @@ -34,6 +34,7 @@ #include "avcodec.h" #include "dsputil.h" #include "get_bits.h" +#include "huffyuvdsp.h" #include "put_bits.h" #define VLC_BITS 11 @@ -81,6 +82,7 @@ typedef struct HYuvContext { uint8_t *bitstream_buffer; unsigned int bitstream_buffer_size; DSPContext dsp; + HuffYUVDSPContext hdsp; } HYuvContext; void ff_huffyuv_common_init(AVCodecContext *s); -- cgit v1.2.3