diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-02-26 23:47:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-02-26 23:47:32 +0000 |
commit | 3797c74ba5350692122a81db62a7bf2ce152f7fc (patch) | |
tree | 937ea6305b90b405b4760bcabf0d23de1379a869 /libavcodec/options.c | |
parent | 83569729d461d4a9465ad90d6a6e36eb2c358cb5 (diff) | |
download | ffmpeg-3797c74ba5350692122a81db62a7bf2ce152f7fc.tar.gz |
Add ticks_per_frame, this should hopefully fix the regressions caused
by the time_base change.
Originally committed as revision 17630 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/options.c')
-rw-r--r-- | libavcodec/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c index 1a3c1efd5d..e5a67a4893 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -393,6 +393,7 @@ static const AVOption options[]={ {"request_channel_layout", NULL, OFFSET(request_channel_layout), FF_OPT_TYPE_INT64, DEFAULT, 0, INT64_MAX, A|D, "request_channel_layout"}, {"rc_max_vbv_use", NULL, OFFSET(rc_max_available_vbv_use), FF_OPT_TYPE_FLOAT, 1.0/3, 0.0, FLT_MAX, V|E}, {"rc_min_vbv_use", NULL, OFFSET(rc_min_vbv_overflow_use), FF_OPT_TYPE_FLOAT, 3, 0.0, FLT_MAX, V|E}, +{"ticks_per_frame", NULL, OFFSET(ticks_per_frame), FF_OPT_TYPE_INT, 1, 1, INT_MAX, A|V|E|D}, {NULL}, }; |