From: Michael Niedermayer Date: Wed, 16 Feb 2011 01:09:46 +0000 (+0100) Subject: vbv_delay AVOption for ABI compatibility X-Git-Tag: v0.7b2~851 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=50a82c2c754ff9df7b918d2bad90e46d5a00063a;p=coroid%2Flibav_saccubus.git vbv_delay AVOption for ABI compatibility Signed-off-by: Michael Niedermayer Signed-off-by: Janne Grunau --- diff --git a/libavcodec/options.c b/libavcodec/options.c index 57e0804ce..e4bc8a622 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}, };