diff options
author | Eric Wollesen <encoded@xmtp.net> | 2008-09-12 16:05:23 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-12 16:05:23 +0200 |
commit | 5f8eebd122ebf49bfcb6b6d6c6063bb1a932e7ff (patch) | |
tree | 1df236e54479adf35b0729b27c3fd87dce7b143c /src/Makefile.am | |
parent | 4970c42c8675ff6a992f159dc97837d3c0e2d35e (diff) | |
download | mpd-5f8eebd122ebf49bfcb6b6d6c6063bb1a932e7ff.tar.gz mpd-5f8eebd122ebf49bfcb6b6d6c6063bb1a932e7ff.tar.xz mpd-5f8eebd122ebf49bfcb6b6d6c6063bb1a932e7ff.zip |
shout: added mp3 encoder
[mk: moved this patch after "Refactor and cleanup of shout Ogg and MP3
audio outputs". The original commit message follows, although it is
outdated:]
Creation of shout_mp3 audio output plugin. Basically I just copied the
existing shout plugin and replaced ogg with lame. Uses lame for mp3
encoding. Next step is to pull common functionality out of each shout
plugin and share it between them.
Configuration options for "shout_mp3" are the same as for "shout".
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 097722dd8..272a63199 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,6 +4,7 @@ SUBDIRS = $(MP4FF_SUBDIR) mpd_audioOutputs = \ audioOutputs/audioOutput_shout.c \ audioOutputs/audioOutput_shout_ogg.c \ + audioOutputs/audioOutput_shout_mp3.c \ audioOutputs/audioOutput_null.c \ audioOutputs/audioOutput_fifo.c \ audioOutputs/audioOutput_alsa.c \ |