summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 9c435edb15..7dc3b0b160 100644
--- a/options/options.c
+++ b/options/options.c
@@ -44,12 +44,15 @@
#include "video/hwdec.h"
#include "video/image_writer.h"
#include "sub/osd.h"
-#include "audio/filter/af.h"
#include "audio/decode/dec_audio.h"
#include "player/core.h"
#include "player/command.h"
#include "stream/stream.h"
+#if HAVE_LIBAF
+#include "audio/filter/af.h"
+#endif
+
#if HAVE_DRM
#include "video/out/drm_common.h"
#endif
@@ -418,8 +421,10 @@ const m_option_t mp_opts[] = {
// ------------------------- codec/vfilter options --------------------
+#if HAVE_LIBAF
OPT_SETTINGSLIST("af-defaults", af_defs, 0, &af_obj_list, ),
OPT_SETTINGSLIST("af", af_settings, 0, &af_obj_list, ),
+#endif
OPT_SETTINGSLIST("vf-defaults", vf_defs, 0, &vf_obj_list, ),
OPT_SETTINGSLIST("vf", vf_settings, 0, &vf_obj_list, ),