diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-20 20:32:51 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-20 21:32:47 +0100 |
commit | f70d7eb20c1d5a920f80ef73d1bb6199feedcec4 (patch) | |
tree | c98da78d0a8d1ac70d36cdd7472cf84a538b00fd /libavcodec/huffyuv.h | |
parent | 78e39aa7ee12bb61cf34d8ca6bebd129d659d9cd (diff) | |
download | ffmpeg-f70d7eb20c1d5a920f80ef73d1bb6199feedcec4.tar.gz |
Move add/diff_int16 to lossless_videodsp
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 b529f1b52b..0aecad0437 100644 --- a/libavcodec/huffyuv.h +++ b/libavcodec/huffyuv.h @@ -35,6 +35,7 @@ #include "dsputil.h" #include "get_bits.h" #include "put_bits.h" +#include "lossless_videodsp.h" #define VLC_BITS 11 @@ -92,6 +93,7 @@ typedef struct HYuvContext { uint8_t *bitstream_buffer; unsigned int bitstream_buffer_size; DSPContext dsp; + LLVidDSPContext llviddsp; } HYuvContext; void ff_huffyuv_common_init(AVCodecContext *s); |