]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dnxhddec.c
move private context declaration at the top
[ffmpeg] / libavcodec / dnxhddec.c
index 2d3762b39632593bb9a25185e927b3b1c47524b3..25ccd13b107077adb8e7df9141ffc2e90033dc98 100644 (file)
@@ -23,7 +23,7 @@
 //#define DEBUG
 
 #include "avcodec.h"
-#include "bitstream.h"
+#include "get_bits.h"
 #include "dnxhddata.h"
 #include "dsputil.h"
 
@@ -40,7 +40,7 @@ typedef struct {
     int last_dc[3];
     DSPContext dsp;
     DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]);
-    DECLARE_ALIGNED_8(ScanTable, scantable);
+    ScanTable scantable;
     const CIDEntry *cid_table;
 } DNXHDContext;