diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-15 05:39:44 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-15 05:39:44 +0000 |
commit | 9d9a6239258ef756414ee86a185a210eb71b591e (patch) | |
tree | abc7bf5e1f5e3135f70157758f8f70d9f799b119 /libavcodec/mpegvideo.h | |
parent | 8be080aebb817e45bdfbb9d13a405f900ecc6b99 (diff) | |
download | ffmpeg-9d9a6239258ef756414ee86a185a210eb71b591e.tar.gz |
decode mpeg-2 closed gop first b frames, fix issue #824
Originally committed as revision 18837 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 6240aac639..c2947b48ce 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -312,6 +312,7 @@ typedef struct MpegEncContext { int *lambda_table; int adaptive_quant; ///< use adaptive quantization int dquant; ///< qscale difference to prev qscale + int closed_gop; ///< MPEG1/2 GOP is closed int pict_type; ///< FF_I_TYPE, FF_P_TYPE, FF_B_TYPE, ... int last_pict_type; //FIXME removes int last_non_b_pict_type; ///< used for mpeg4 gmc b-frames & ratecontrol |