diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-11-12 18:32:25 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-11-23 11:36:59 +0100 |
commit | d013453caafcc44c74d4bdbaa99ee4e8f32414cb (patch) | |
tree | 1c3e4360c73da0efb101936459315fa930d4e463 /fftools/ffmpeg_opt.c | |
parent | 9d4e290ec46b29c305dbd5da5913d30efa9db80f (diff) | |
download | ffmpeg-d013453caafcc44c74d4bdbaa99ee4e8f32414cb.tar.gz |
ffmpeg: drop the -deinterlace option
It is undocumented and has been deprecated since 2013.
Diffstat (limited to 'fftools/ffmpeg_opt.c')
-rw-r--r-- | fftools/ffmpeg_opt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index fc4f420616..aec60a2532 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -153,7 +153,6 @@ int audio_volume = 256; int audio_sync_method = 0; int video_sync_method = VSYNC_AUTO; float frame_drop_threshold = 0; -int do_deinterlace = 0; int do_benchmark = 0; int do_benchmark_all = 0; int do_hex_dump = 0; @@ -3788,8 +3787,6 @@ const OptionDef options[] = { { "passlogfile", OPT_VIDEO | HAS_ARG | OPT_STRING | OPT_EXPERT | OPT_SPEC | OPT_OUTPUT, { .off = OFFSET(passlogfiles) }, "select two pass log file name prefix", "prefix" }, - { "deinterlace", OPT_VIDEO | OPT_BOOL | OPT_EXPERT, { &do_deinterlace }, - "this option is deprecated, use the yadif filter instead" }, { "psnr", OPT_VIDEO | OPT_BOOL | OPT_EXPERT, { &do_psnr }, "calculate PSNR of compressed frames" }, { "vstats", OPT_VIDEO | OPT_EXPERT , { .func_arg = opt_vstats }, |