diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-07 12:23:13 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-05-27 08:52:34 -0700 |
commit | 0d439fbede03854eac8a978cccf21a3425a3c82d (patch) | |
tree | 91ecc54b480f3011ffda2ad950a0904a0e8df35d /libavcodec/huffyuv.h | |
parent | 888dcd86755d37e55fd74166f6d38ad66d41db58 (diff) | |
download | ffmpeg-0d439fbede03854eac8a978cccf21a3425a3c82d.tar.gz |
dsputil: Split off HuffYUV decoding bits into their own context
Also shorten HuffYUV context member names to avoid clutter.
Diffstat (limited to 'libavcodec/huffyuv.h')
-rw-r--r-- | libavcodec/huffyuv.h | 2 |
1 files changed, 2 insertions, 0 deletions
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); |