aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-23 17:28:33 +0200
committerAnton Khirnov <anton@khirnov.net>2011-08-24 14:07:39 +0200
commit8ee18b4bee24f99e733cf1425894e82c25d02426 (patch)
tree9ac30d21bf46a134a7cd386eb0502c6aa948d764
parent7e6029f98a60724a7d7de64096aece4bb1479da0 (diff)
downloadffmpeg-8ee18b4bee24f99e733cf1425894e82c25d02426.tar.gz
lavc: remove vbv_delay option
It's broken and serves no purpose as it's a read-only field.
-rw-r--r--libavcodec/options.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c
index 821bf800b3..47886e8444 100644
--- a/libavcodec/options.c
+++ b/libavcodec/options.c
@@ -456,7 +456,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"},