comparison cfg-mplayer.h @ 3194:1648d11fc36c

commandline configuration of audio plugins now through struct, format conversion plugin added
author anders
date Thu, 29 Nov 2001 12:44:06 +0000
parents c8edb0691f09
children b59502557e39
comparison
equal deleted inserted replaced
3193:53a6d2fc1498 3194:1648d11fc36c
65 #endif 65 #endif
66 66
67 #ifdef HAVE_ODIVX_POSTPROCESS 67 #ifdef HAVE_ODIVX_POSTPROCESS
68 extern int use_old_pp; 68 extern int use_old_pp;
69 #endif 69 #endif
70
71 // From audio plugins
72 extern int pl_delay_len;
73 70
74 /* from libvo/aspect.c */ 71 /* from libvo/aspect.c */
75 extern float monitor_aspect; 72 extern float monitor_aspect;
76 73
77 /* from dec_audio, currently used for ac3surround decoder only */ 74 /* from dec_audio, currently used for ac3surround decoder only */
98 {"o", "Option -o has been renamed to -vo (video-out), use -vo !\n", 95 {"o", "Option -o has been renamed to -vo (video-out), use -vo !\n",
99 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, 96 CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
100 {"vo", &video_driver, CONF_TYPE_STRING, 0, 0, 0}, 97 {"vo", &video_driver, CONF_TYPE_STRING, 0, 0, 0},
101 // -----options related to audio and audio plugins------- 98 // -----options related to audio and audio plugins-------
102 {"ao", &audio_driver, CONF_TYPE_STRING, 0, 0, 0}, 99 {"ao", &audio_driver, CONF_TYPE_STRING, 0, 0, 0},
103 {"aop", &audio_plugins, CONF_TYPE_STRING, 0, 0, 0}, 100 {"aop", &ao_plugin_cfg.plugin_list, CONF_TYPE_STRING, 0, 0, 0},
104 {"aop_delay", &pl_delay_len, CONF_TYPE_INT, CONF_MIN, 0, 0}, 101 {"aop_delay", &ao_plugin_cfg.pl_delay_len, CONF_TYPE_INT, CONF_MIN, 0, 0},
105 // {"dsp", &dsp, CONF_TYPE_STRING, CONF_NOCFG, 0, 0}, 102 // {"dsp", &dsp, CONF_TYPE_STRING, CONF_NOCFG, 0, 0},
106 {"dsp", "Use -ao oss:dsp_path!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0}, 103 {"dsp", "Use -ao oss:dsp_path!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
107 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0}, 104 {"mixer", &mixer_device, CONF_TYPE_STRING, 0, 0, 0},
108 {"master", &mixer_usemaster, CONF_TYPE_FLAG, 0, 0, 1}, 105 {"master", &mixer_usemaster, CONF_TYPE_FLAG, 0, 0, 1},
109 {"channels", &audio_output_channels, CONF_TYPE_INT, CONF_RANGE, 2, 6}, 106 {"channels", &audio_output_channels, CONF_TYPE_INT, CONF_RANGE, 2, 6},