]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/rv34.h
ffv1: add 1 status byte to slices in in case crcs are stored too.
[ffmpeg] / libavcodec / rv34.h
index e9cac1ca2fe3a26ca7c28c3ac96d8d34b6d0d3fd..6b8d36556f956dd27c9d1a50fe09cafa732f8eb7 100644 (file)
@@ -106,11 +106,13 @@ typedef struct RV34DecContext{
     int rpr;                 ///< one field size in RV30 slice header
 
     int cur_pts, last_pts, next_pts;
+    int scaled_weight;
     int weight1, weight2;    ///< B frame distance fractions (0.14) used in motion compensation
+    int mv_weight1, mv_weight2;
 
     uint16_t *cbp_luma;      ///< CBP values for luma subblocks
     uint8_t  *cbp_chroma;    ///< CBP values for chroma subblocks
-    int      *deblock_coefs; ///< deblock coefficients for each macroblock
+    uint16_t *deblock_coefs; ///< deblock coefficients for each macroblock
 
     /** 8x8 block available flags (for MV prediction) */
     DECLARE_ALIGNED(8, uint32_t, avail_cache)[3*4];