From 3a6619d62c19770211757916c55fa9436385ae20 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 22 Feb 2009 17:17:26 +0100 Subject: encoder: added vorbis encoder This new vorbis encoder plugin is based on the existing shout_ogg.c plugin. --- src/encoder_list.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/encoder_list.c') diff --git a/src/encoder_list.c b/src/encoder_list.c index 4108b97a0..9b384490c 100644 --- a/src/encoder_list.c +++ b/src/encoder_list.c @@ -22,7 +22,12 @@ #include +extern const struct encoder_plugin vorbis_encoder_plugin; + static const struct encoder_plugin *encoder_plugins[] = { +#ifdef ENABLE_VORBIS_ENCODER + &vorbis_encoder_plugin, +#endif NULL }; -- cgit v1.2.3