aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-23 17:28:33 +0200
committerAnton Khirnov <anton@khirnov.net>2011-09-11 13:03:38 +0200
commitf45cfb4751eb1012bb2c4e5303b7558593a17127 (patch)
tree59c25a455aa842d527da9378652282611abc2a86
parent566d26923ec59d9897cd7c73e3689484135a78c6 (diff)
downloadffmpeg-f45cfb4751eb1012bb2c4e5303b7558593a17127.tar.gz
lavc: remove vbv_delay option
It's broken and serves no purpose as it's a read-only field. (cherry picked from commit 8ee18b4bee24f99e733cf1425894e82c25d02426) Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r--libavcodec/options.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c
index ae9e0c902d..792bb5941c 100644
--- a/libavcodec/options.c
+++ b/libavcodec/options.c
@@ -449,7 +449,6 @@ static const AVOption options[]={
{"thread_type", "select multithreading type", OFFSET(thread_type), FF_OPT_TYPE_INT, {.dbl = FF_THREAD_SLICE|FF_THREAD_FRAME }, 0, INT_MAX, V|E|D, "thread_type"},
{"slice", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_THREAD_SLICE }, INT_MIN, INT_MAX, V|E|D, "thread_type"},
{"frame", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = 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, {.dbl = 0 }, 0, INT64_MAX},
{"audio_service_type", "audio service type", OFFSET(audio_service_type), FF_OPT_TYPE_INT, {.dbl = AV_AUDIO_SERVICE_TYPE_MAIN }, 0, AV_AUDIO_SERVICE_TYPE_NB-1, A|E, "audio_service_type"},
{"ma", "Main Audio Service", 0, FF_OPT_TYPE_CONST, {.dbl = AV_AUDIO_SERVICE_TYPE_MAIN }, INT_MIN, INT_MAX, A|E, "audio_service_type"},
{"ef", "Effects", 0, FF_OPT_TYPE_CONST, {.dbl = AV_AUDIO_SERVICE_TYPE_EFFECTS }, INT_MIN, INT_MAX, A|E, "audio_service_type"},