diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-15 02:37:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-15 02:37:04 +0000 |
commit | 035817727fc64430631f3489ee10add63ff6cdc0 (patch) | |
tree | 0a557523630c64dd87039e9654f7fd5d555e5cd9 /libavcodec/avcodec.h | |
parent | 9efc77c86f0360d8447fe1c655ad0fd35b23f305 (diff) | |
download | ffmpeg-035817727fc64430631f3489ee10add63ff6cdc0.tar.gz |
support strictly enforcing gop size
Originally committed as revision 3594 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a1888faf2c..e653d32161 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -296,6 +296,7 @@ extern int motion_estimation_method; #define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 ///< will reserve space for SVCD scan offset user data #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 /* Unsupported options : * Syntax Arithmetic coding (SAC) |