diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-01-22 19:48:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-01-22 19:48:28 +0000 |
commit | 303e50e65b8b9dc66ef9929a5a638a16378da64c (patch) | |
tree | 1c4844019a66159a182fa2b059d008deda908c59 /libavcodec/mpegvideo.h | |
parent | d398a27e0b98f2d575d4e69ce4974768dff9f7d8 (diff) | |
download | ffmpeg-303e50e65b8b9dc66ef9929a5a638a16378da64c.tar.gz |
closed gop support & flags2 as all bits in flags are used
and a few minor things i forgot to commit ...
Originally committed as revision 2718 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 5f742cb388..88e2f6d50b 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -255,6 +255,7 @@ typedef struct MpegEncContext { int fixed_qscale; ///< fixed qscale if non zero int encoding; ///< true if we are encoding (vs decoding) int flags; ///< AVCodecContext.flags (HQ, MV4, ...) + int flags2; ///< AVCodecContext.flags2 int max_b_frames; ///< max number of b-frames for encoding int luma_elim_threshold; int chroma_elim_threshold; @@ -469,7 +470,6 @@ typedef struct MpegEncContext { void *opaque; ///< private data for the user /* bit rate control */ - int I_frame_bits; //FIXME used in mpeg12 ... int64_t wanted_bits; int64_t total_bits; int frame_bits; ///< bits used for the current frame @@ -619,7 +619,6 @@ typedef struct MpegEncContext { GetBitContext gb; /* Mpeg1 specific */ - int fake_picture_number; ///< picture number at the bitstream frame rate int gop_picture_number; ///< index of the first picture of a GOP based on fake_pic_num & mpeg1 specific int last_mv_dir; ///< last mv_dir, used for b frame encoding int broken_link; ///< no_output_of_prior_pics_flag |