diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-11-12 18:38:03 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-11-23 11:36:59 +0100 |
commit | 823cea519778f3c6b5119cfdb75219289564db57 (patch) | |
tree | 32a5eb1673ac64706f0ae2999e8cf4f1ba98ea7d /fftools | |
parent | 84cb255c20800ce8bc12a93a1b63475ea5413010 (diff) | |
download | ffmpeg-823cea519778f3c6b5119cfdb75219289564db57.tar.gz |
ffmpeg: drop -isync, which did nothing since 2012
Diffstat (limited to 'fftools')
-rw-r--r-- | fftools/ffmpeg_opt.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index 45ed727e5e..e55b584fd4 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -178,7 +178,6 @@ int64_t stats_period = 500000; static int file_overwrite = 0; static int no_file_overwrite = 0; static int do_psnr = 0; -static int input_sync; static int input_stream_potentially_available = 0; static int ignore_unknown_streams = 0; static int copy_unknown_streams = 0; @@ -3867,9 +3866,6 @@ const OptionDef options[] = { { "canvas_size", OPT_SUBTITLE | HAS_ARG | OPT_STRING | OPT_SPEC | OPT_INPUT, { .off = OFFSET(canvas_sizes) }, "set canvas size (WxH or abbreviation)", "size" }, - /* grab options */ - { "isync", OPT_BOOL | OPT_EXPERT, { &input_sync }, "this option is deprecated and does nothing", "" }, - /* muxer options */ { "muxdelay", OPT_FLOAT | HAS_ARG | OPT_EXPERT | OPT_OFFSET | OPT_OUTPUT, { .off = OFFSET(mux_max_delay) }, "set the maximum demux-decode delay", "seconds" }, |