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/utils.c | |
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/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 81c9b69abe..789ad8e606 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -722,6 +722,8 @@ static const AVOption options[]={ {"prediction_order_method", NULL, OFFSET(prediction_order_method), FF_OPT_TYPE_INT, -1, INT_MIN, INT_MAX, A|E}, {"min_partition_order", NULL, OFFSET(min_partition_order), FF_OPT_TYPE_INT, -1, INT_MIN, INT_MAX, A|E}, {"max_partition_order", NULL, OFFSET(max_partition_order), FF_OPT_TYPE_INT, -1, INT_MIN, INT_MAX, A|E}, +{"timecode_frame_start", NULL, OFFSET(timecode_frame_start), FF_OPT_TYPE_INT, 0, 0, INT_MAX, V|E}, +{"drop_frame_timecode", NULL, 0, FF_OPT_TYPE_CONST, CODEC_FLAG2_DROP_FRAME_TIMECODE, INT_MIN, INT_MAX, V|E, "flags2"}, {NULL}, }; |