diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-07 13:45:08 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-11-07 13:45:08 +0000 |
commit | 80d617f5b47a0c92ec31b59cfd090037c230742f (patch) | |
tree | 4da19fdc076e21035a51cd5508a3f46190bc9616 /libavcodec/avcodec.h | |
parent | d9d2f88def1b2ad2f3dc5737c27463ffda6c8884 (diff) | |
download | ffmpeg-80d617f5b47a0c92ec31b59cfd090037c230742f.tar.gz |
add option to set mpeg1/2 gop timecode start, and drop frame flag timecode flag
Originally committed as revision 6933 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index b450b8c4f6..633032234f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -370,6 +370,7 @@ typedef struct RcOverride{ #define CODEC_FLAG2_BRDO 0x00000400 ///< b-frame rate-distortion optimization #define CODEC_FLAG2_INTRA_VLC 0x00000800 ///< use MPEG-2 intra VLC table #define CODEC_FLAG2_MEMC_ONLY 0x00001000 ///< only do ME/MC (I frames -> ref, P frame -> ME+MC) +#define CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 ///< timecode is in drop frame format /* Unsupported options : * Syntax Arithmetic coding (SAC) @@ -2057,6 +2058,13 @@ typedef struct AVCodecContext { * - decoding: unused. */ int max_partition_order; + + /** + * GOP timecode frame start number, in non drop frame format + * - encoding: set by user. + * - decoding: unused. + */ + int64_t timecode_frame_start; } AVCodecContext; /** |