]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mjpegdec.h
intrax8: Check and propagate errors from ff_intrax8_common_init
[ffmpeg] / libavcodec / mjpegdec.h
index 344d2cbafcca71cf4f2c106b880433b58856f7ae..aa4703a24dffb5d4e110d4db84fe0f755030ed9f 100644 (file)
 #include "libavutil/pixdesc.h"
 
 #include "avcodec.h"
+#include "blockdsp.h"
 #include "get_bits.h"
-#include "dsputil.h"
 #include "hpeldsp.h"
+#include "idctdsp.h"
 
 #define MAX_COMPONENTS 4
 
@@ -95,8 +96,9 @@ typedef struct MJpegDecodeContext {
     uint8_t *last_nnz[MAX_COMPONENTS];
     uint64_t coefs_finished[MAX_COMPONENTS]; ///< bitmask of which coefs have been completely decoded (progressive mode)
     ScanTable scantable;
-    DSPContext dsp;
+    BlockDSPContext bdsp;
     HpelDSPContext hdsp;
+    IDCTDSPContext idsp;
 
     int restart_interval;
     int restart_count;