]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/huffyuv.h
libfdk-aacdec: Reduce the default decoder delay by one frame
[ffmpeg] / libavcodec / huffyuv.h
index 9c875d531049266a97dd15cf6af57c7c2dbf6f9a..aed153769ad5c5dd14ea4abbae262795e9257bd4 100644 (file)
 #include <stdint.h>
 
 #include "avcodec.h"
-#include "dsputil.h"
+#include "bswapdsp.h"
 #include "get_bits.h"
+#include "huffyuvdsp.h"
+#include "huffyuvencdsp.h"
 #include "put_bits.h"
 
 #define VLC_BITS 11
@@ -80,7 +82,9 @@ typedef struct HYuvContext {
     VLC vlc[6];                             //Y,U,V,YY,YU,YV
     uint8_t *bitstream_buffer;
     unsigned int bitstream_buffer_size;
-    DSPContext dsp;
+    BswapDSPContext bdsp;
+    HuffYUVDSPContext hdsp;
+    HuffYUVEncDSPContext hencdsp;
 } HYuvContext;
 
 void ff_huffyuv_common_init(AVCodecContext *s);