diff options
author | Max Kellermann <max@duempel.org> | 2009-02-22 17:18:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-22 17:18:03 +0100 |
commit | f7c685f1abaf8201d8bdc2b520b5529dfaf474dd (patch) | |
tree | 5b4b6594ab7ab9617a1811045f889e1a6e50bc4e /src/encoder_list.c | |
parent | 3a6619d62c19770211757916c55fa9436385ae20 (diff) | |
download | mpd-f7c685f1abaf8201d8bdc2b520b5529dfaf474dd.tar.gz mpd-f7c685f1abaf8201d8bdc2b520b5529dfaf474dd.tar.xz mpd-f7c685f1abaf8201d8bdc2b520b5529dfaf474dd.zip |
encoder: added lame mp3 encoder
This new LAME encoder plugin is based on the existing shout_mp3.c
plugin.
Diffstat (limited to '')
-rw-r--r-- | src/encoder_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c index 9b384490c..f9f518936 100644 --- a/src/encoder_list.c +++ b/src/encoder_list.c @@ -23,11 +23,15 @@ #include <string.h> extern const struct encoder_plugin vorbis_encoder_plugin; +extern const struct encoder_plugin lame_encoder_plugin; static const struct encoder_plugin *encoder_plugins[] = { #ifdef ENABLE_VORBIS_ENCODER &vorbis_encoder_plugin, #endif +#ifdef ENABLE_LAME_ENCODER + &lame_encoder_plugin, +#endif NULL }; |