diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-02-16 02:09:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-16 02:10:05 +0100 |
commit | fad8143f5b9689e0e2dafe46500d944cfa58a911 (patch) | |
tree | 1924e1943b6dac4c8a158cb93a5fc4fc1b65037f /libavcodec | |
parent | 2f6c6a346234c4b7004f21c54de80f113cfb224a (diff) | |
download | ffmpeg-fad8143f5b9689e0e2dafe46500d944cfa58a911.tar.gz |
vbv_delay AVOption for ABI compatibility
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-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 57e0804ce5..e4bc8a6226 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -435,6 +435,7 @@ static const AVOption options[]={ {"thread_type", "select multithreading type", OFFSET(thread_type), FF_OPT_TYPE_INT, FF_THREAD_SLICE|FF_THREAD_FRAME, 0, INT_MAX, V|E|D, "thread_type"}, {"slice", NULL, 0, FF_OPT_TYPE_CONST, FF_THREAD_SLICE, INT_MIN, INT_MAX, V|E|D, "thread_type"}, {"frame", NULL, 0, FF_OPT_TYPE_CONST, FF_THREAD_FRAME, INT_MIN, INT_MAX, V|E|D, "thread_type"}, +{"vbv_delay", "initial buffer fill time in periods of 27Mhz clock", 0, FF_OPT_TYPE_INT64, 0, 0, INT64_MAX}, {NULL}, }; |