summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuv.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-12-23 18:42:11 +0100
committerDiego Biurrun <diego@biurrun.de>2014-05-27 08:54:53 -0700
commit512f3ffe9b4bb86767c2b1176554407c75fe1a5c (patch)
tree47f7c9707479b72e570c969576e2dbd94375114f /libavcodec/huffyuv.h
parent0d439fbede03854eac8a978cccf21a3425a3c82d (diff)
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.h2
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);