diff cfg-mplayer.h @ 7614:ce6a938aa6d3

Adding -format and -af switches
author anders
date Sun, 06 Oct 2002 11:23:02 +0000
parents c3bbe602aff3
children b10d6345f2a6
line wrap: on
line diff
--- a/cfg-mplayer.h	Sun Oct 06 10:49:41 2002 +0000
+++ b/cfg-mplayer.h	Sun Oct 06 11:23:02 2002 +0000
@@ -111,6 +111,14 @@
 /* from libvo/aspect.c */
 extern float monitor_aspect;
 
+#include "libaf/af.h"
+extern af_cfg_t af_cfg; // Audio filter configuration, defined in libmpcodecs/dec_audio.c
+struct config audio_filter_conf[]={       
+	{"list", &af_cfg.list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
+        {"force", &af_cfg.force, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
+	{NULL, NULL, 0, 0, 0, 0, NULL}
+};
+
 /* Options related to audio out plugins */
 struct config ao_plugin_conf[]={
 	{"list", &ao_plugin_cfg.plugin_list, CONF_TYPE_STRING, 0, 0, 0, NULL},
@@ -167,6 +175,7 @@
 	{"ao", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL},
 
 	{"aop", ao_plugin_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
+	{"af", audio_filter_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
 	{"dsp", "Use -ao oss:dsp_path!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
         {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
 	{"master", "Option -master has been removed, use -aop list=volume instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},