File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ dsp is an audio processing program with an interactive mode.
17
17
* ffmpeg (libavcodec, libavformat, and libavutil): For ffmpeg input support.
18
18
* alsa-lib: For alsa input/output support.
19
19
* libao: For ao output support.
20
- * libmad: For mp3 input support.
20
+ * libmad: For mp3 input support (disabled by default) .
21
21
* libpulse-simple: For PulseAudio input/ouput support.
22
22
* LADSPA: For the LADSPA frontend and the ` ladspa_host ` effect.
23
23
* libltdl (libtool): For the ` ladspa_host ` effect.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Options:
18
18
--disable-zita-convolver
19
19
--disable-alsa
20
20
--disable-ao
21
- --disable -mad
21
+ --enable -mad
22
22
--disable-pulse
23
23
--disable-ladspa_dsp
24
24
--disable-ladspa-host
@@ -37,6 +37,14 @@ for i in "$@"; do
37
37
esac
38
38
done
39
39
40
+ unset CONFIG_DISABLE_DSP CONFIG_DISABLE_SNDFILE CONFIG_DISABLE_FFMPEG
41
+ unset CONFIG_DISABLE_FFTW3 CONFIG_DISABLE_ZITA_CONVOLVER CONFIG_DISABLE_ALSA
42
+ unset CONFIG_DISABLE_AO CONFIG_DISABLE_MAD CONFIG_DISABLE_PULSE
43
+ unset CONFIG_DISABLE_LADSPA_DSP CONFIG_DISABLE_LADSPA_HOST CONFIG_DEBUG_BUILD
44
+
45
+ # Disable libmad by default since libsndfile has mpeg audio support now.
46
+ CONFIG_DISABLE_MAD=y
47
+
40
48
[ " $NO_CONFIG " != " y" -a -f ./.config ] && . ./.config
41
49
42
50
for i in " $@ " ; do
@@ -49,6 +57,7 @@ for i in "$@"; do
49
57
--disable-alsa) CONFIG_DISABLE_ALSA=y ;;
50
58
--disable-ao) CONFIG_DISABLE_AO=y ;;
51
59
--disable-mad) CONFIG_DISABLE_MAD=y ;;
60
+ --enable-mad) unset CONFIG_DISABLE_MAD ;;
52
61
--disable-pulse) CONFIG_DISABLE_PULSE=y ;;
53
62
--disable-ladspa_dsp) CONFIG_DISABLE_LADSPA_DSP=y ;;
54
63
--disable-ladspa-host) CONFIG_DISABLE_LADSPA_HOST=y ;;
You can’t perform that action at this time.
0 commit comments