diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-23 18:42:11 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-05-27 08:54:53 -0700 |
commit | 512f3ffe9b4bb86767c2b1176554407c75fe1a5c (patch) | |
tree | 47f7c9707479b72e570c969576e2dbd94375114f /libavcodec/huffyuv.h | |
parent | 0d439fbede03854eac8a978cccf21a3425a3c82d (diff) | |
download | ffmpeg-512f3ffe9b4bb86767c2b1176554407c75fe1a5c.tar.gz |
dsputil: Split off HuffYUV encoding 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 14b4abcdfa..f76d62a88a 100644 --- a/libavcodec/huffyuv.h +++ b/libavcodec/huffyuv.h @@ -35,6 +35,7 @@ #include "dsputil.h" #include "get_bits.h" #include "huffyuvdsp.h" +#include "huffyuvencdsp.h" #include "put_bits.h" #define VLC_BITS 11 @@ -83,6 +84,7 @@ typedef struct HYuvContext { unsigned int bitstream_buffer_size; DSPContext dsp; HuffYUVDSPContext hdsp; + HuffYUVEncDSPContext hencdsp; } HYuvContext; void ff_huffyuv_common_init(AVCodecContext *s); |