]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpeg4video.h
hevc_filter: drop redundant checks
[ffmpeg] / libavcodec / mpeg4video.h
index 60857cce116259557e2f57a9b3de1c6eb9381b56..b092684768c356453690947495504eac546d626b 100644 (file)
@@ -66,6 +66,13 @@ typedef struct Mpeg4DecContext {
     int time_increment_bits;
     int shape;
     int vol_sprite_usage;
+    int sprite_brightness_change;
+    int num_sprite_warping_points;
+    ///< sprite trajectory points
+    uint16_t sprite_traj[4][2];
+    ///< sprite shift [isChroma]
+    int sprite_shift[2];
+
     // reversible vlc
     int rvlc;
     ///< could this stream contain resync markers
@@ -73,11 +80,22 @@ typedef struct Mpeg4DecContext {
     ///< time distance of first I -> B, used for interlaced b frames
     int t_frame;
 
+    int new_pred;
+    int enhancement_type;
+    int scalability;
+    int use_intra_dc_vlc;
+    ///< QP above whch the ac VLC should be used for intra dc
+    int intra_dc_threshold;
+
     /* bug workarounds */
     int divx_version;
     int divx_build;
     int xvid_build;
     int lavc_build;
+    ///< flag for having shown the warning about divxs invalid b frames
+    int showed_packed_warning;
+    int vol_control_parameters; /**< does the stream contain the low_delay flag,
+                                 *   used to work around buggy encoders. */
 
     int cplx_estimation_trash_i;
     int cplx_estimation_trash_p;