From f7c685f1abaf8201d8bdc2b520b5529dfaf474dd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 22 Feb 2009 17:18:03 +0100 Subject: encoder: added lame mp3 encoder This new LAME encoder plugin is based on the existing shout_mp3.c plugin. --- src/encoder_list.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/encoder_list.c') 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,10 +23,14 @@ #include 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 }; -- cgit v1.2.3