Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-28 01:07:36 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-28 01:16:06 +0400
commite2abc0d5cacc22aa900de8ac26160ea1b786a7b5 (patch)
tree536e4539c573752b2b446d2c8ef17d9d62927815 /libavcodec/huffyuv.h
parent43c57dbe14545d13dbfd8aae341b45514e8bcfbb (diff)
parent0d439fbede03854eac8a978cccf21a3425a3c82d (diff)
Merge commit '0d439fbede03854eac8a978cccf21a3425a3c82d'
* commit '0d439fbede03854eac8a978cccf21a3425a3c82d': dsputil: Split off HuffYUV decoding bits into their own context Conflicts: configure libavcodec/dsputil.c libavcodec/dsputil.h libavcodec/huffyuv.h libavcodec/huffyuvdec.c libavcodec/lagarith.c libavcodec/vble.c libavcodec/x86/Makefile libavcodec/x86/dsputil.asm libavcodec/x86/dsputil_init.c libavcodec/x86/dsputil_mmx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 da4e3b5a13..78c241e65a 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"
#include "lossless_videodsp.h"
@@ -95,6 +96,7 @@ typedef struct HYuvContext {
uint8_t *bitstream_buffer;
unsigned int bitstream_buffer_size;
DSPContext dsp;
+ HuffYUVDSPContext hdsp;
LLVidDSPContext llviddsp;
} HYuvContext;