aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoder_list.c')
-rw-r--r--src/encoder_list.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c
index d563b6bc8..ad10e4e28 100644
--- a/src/encoder_list.c
+++ b/src/encoder_list.c
@@ -23,16 +23,22 @@
#include <string.h>
+extern const struct encoder_plugin null_encoder_plugin;
extern const struct encoder_plugin vorbis_encoder_plugin;
extern const struct encoder_plugin lame_encoder_plugin;
+extern const struct encoder_plugin twolame_encoder_plugin;
static const struct encoder_plugin *encoder_plugins[] = {
+ &null_encoder_plugin,
#ifdef ENABLE_VORBIS_ENCODER
&vorbis_encoder_plugin,
#endif
#ifdef ENABLE_LAME_ENCODER
&lame_encoder_plugin,
#endif
+#ifdef ENABLE_TWOLAME_ENCODER
+ &twolame_encoder_plugin,
+#endif
NULL
};