aboutsummaryrefslogtreecommitdiff
path: root/src/encoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-10-01 20:15:15 +0200
committerMax Kellermann <max@duempel.org>2012-10-02 00:45:24 +0200
commitd793b7c03ff7444b0aab485e5895573b4a4ff0a1 (patch)
tree94d3bc20c57b90045ea67bfb866f42ae671f6b24 /src/encoder_list.c
parent9a715267ad1a86de4c522ff6ed5fd11827132c77 (diff)
encoder/opus: new encoder plugin for the Opus codec
Diffstat (limited to 'src/encoder_list.c')
-rw-r--r--src/encoder_list.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c
index 3bbf9330..029b4be3 100644
--- a/src/encoder_list.c
+++ b/src/encoder_list.c
@@ -21,6 +21,7 @@
#include "encoder_list.h"
#include "encoder_plugin.h"
#include "encoder/VorbisEncoderPlugin.hxx"
+#include "encoder/OpusEncoderPlugin.hxx"
#include <string.h>
@@ -35,6 +36,9 @@ const struct encoder_plugin *const encoder_plugins[] = {
#ifdef ENABLE_VORBIS_ENCODER
&vorbis_encoder_plugin,
#endif
+#ifdef HAVE_OPUS
+ &opus_encoder_plugin,
+#endif
#ifdef ENABLE_LAME_ENCODER
&lame_encoder_plugin,
#endif