summaryrefslogtreecommitdiffstats
path: root/options/options.h
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-09-19 23:51:51 -0500
committerDudemanguy <random342@airmail.cc>2023-09-21 16:06:29 +0000
commit177fe48d794c0a52fe0f14e1d66bc3696348997f (patch)
tree72b9a93e19af290ba7615078f19cdea924a651ea /options/options.h
parentfb46666395d4b2693365db69d34e6080cfbf06dc (diff)
downloadmpv-177fe48d794c0a52fe0f14e1d66bc3696348997f.tar.bz2
mpv-177fe48d794c0a52fe0f14e1d66bc3696348997f.tar.xz
options: remove --vf-defaults and --af-defaults
These were deprecated a long time ago and apparently didn't even work with lavfi filters. Go ahead and remove them and additionally clean up some code related to them. m_config_from_obj_desc_and_args becomes much simpler now and a couple of arguments can be completely removed.
Diffstat (limited to 'options/options.h')
-rw-r--r--options/options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/options.h b/options/options.h
index f820a0cbc0..b7af6efb98 100644
--- a/options/options.h
+++ b/options/options.h
@@ -299,8 +299,8 @@ typedef struct MPOpts {
int force_srate;
double playback_speed;
bool pitch_correction;
- struct m_obj_settings *vf_settings, *vf_defs;
- struct m_obj_settings *af_settings, *af_defs;
+ struct m_obj_settings *vf_settings;
+ struct m_obj_settings *af_settings;
struct filter_opts *filter_opts;
struct dec_wrapper_opts *dec_wrapper;
char **sub_name;