aboutsummaryrefslogtreecommitdiff
path: root/src/encoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-22 17:17:26 +0100
committerMax Kellermann <max@duempel.org>2009-02-22 17:17:26 +0100
commit3a6619d62c19770211757916c55fa9436385ae20 (patch)
tree40d4cf47628f79bcc5617293cff1fcce54bdba1e /src/encoder_list.c
parenta9dde676be62195aace54a1e3defefdc78a317f1 (diff)
encoder: added vorbis encoder
This new vorbis encoder plugin is based on the existing shout_ogg.c plugin.
Diffstat (limited to 'src/encoder_list.c')
-rw-r--r--src/encoder_list.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c
index 4108b97a..9b384490 100644
--- a/src/encoder_list.c
+++ b/src/encoder_list.c
@@ -22,7 +22,12 @@
#include <string.h>
+extern const struct encoder_plugin vorbis_encoder_plugin;
+
static const struct encoder_plugin *encoder_plugins[] = {
+#ifdef ENABLE_VORBIS_ENCODER
+ &vorbis_encoder_plugin,
+#endif
NULL
};