diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-03-29 22:27:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-03-29 22:27:25 +0000 |
commit | f3eec1cf526a59805ccf85af3c44cd81fcff0520 (patch) | |
tree | 0d5ad1df0733e77d103bab9edd59280938adc5bb /libavcodec/avcodec.h | |
parent | 5202ed315b4d53ed34c369e0da003bc73e9082de (diff) | |
download | ffmpeg-f3eec1cf526a59805ccf85af3c44cd81fcff0520.tar.gz |
Fix closed gop flag disapearence.
Originally committed as revision 12625 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index e7794c9bea..3857d8015e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -432,7 +432,7 @@ typedef struct RcOverride{ #define CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000 #define CODEC_FLAG_INTERLACED_ME 0x20000000 ///< interlaced motion estimation #define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 ///< Will reserve space for SVCD scan offset user data. -#define CODEC_FLAG_CLOSED_GOP ((int)0x80000000) +#define CODEC_FLAG_CLOSED_GOP 0x80000000 #define CODEC_FLAG2_FAST 0x00000001 ///< Allow non spec compliant speedup tricks. #define CODEC_FLAG2_STRICT_GOP 0x00000002 ///< Strictly enforce GOP size. #define CODEC_FLAG2_NO_OUTPUT 0x00000004 ///< Skip bitstream encoding. |