summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-22 23:06:22 +0200
committerwm4 <wm4@nowhere>2013-07-22 23:07:23 +0200
commit78ebb3c6fa637206bb369349ba93328b36895e2b (patch)
tree94e3d1542c60dc03456fd7ffbb56921d28cf1660 /audio
parentf32a90a8396136cdded09390b68c9aac3d29ee7e (diff)
downloadmpv-78ebb3c6fa637206bb369349ba93328b36895e2b.tar.bz2
mpv-78ebb3c6fa637206bb369349ba93328b36895e2b.tar.xz
options: make legacy hacks for AFs/VFs more explicit
This means that AOs/VOs with no options set do not take the legacy option parsing path, but instead report that they have no options.
Diffstat (limited to 'audio')
-rw-r--r--audio/filter/af.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/filter/af.c b/audio/filter/af.c
index 26ca78c24f..3737228ddf 100644
--- a/audio/filter/af.c
+++ b/audio/filter/af.c
@@ -109,6 +109,7 @@ static bool get_desc(struct m_obj_desc *dst, int index)
const struct m_obj_list af_obj_list = {
.get_desc = get_desc,
.description = "audio filters",
+ .legacy_hacks = true, // many filters have custom option parsing
};
static bool af_config_equals(struct mp_audio *a, struct mp_audio *b)