aboutsummaryrefslogtreecommitdiff
path: root/src/encoder_list.c
diff options
context:
space:
mode:
authorViliam Mateicka <viliam.mateicka@gmail.com>2009-11-17 19:41:35 +0100
committerViliam Mateicka <viliam.mateicka@gmail.com>2009-11-17 19:41:35 +0100
commit5420f9ae76babdfa4ecf35eaad44f90c5866e59a (patch)
tree7b70de8d9296faa953d6084e8cf97518a709259d /src/encoder_list.c
parent39404725f05222706196c6faeaee841b999f9dfb (diff)
encoder: introducing flac encoder plugin
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 3be5ef21..d5f0db65 100644
--- a/src/encoder_list.c
+++ b/src/encoder_list.c
@@ -28,6 +28,7 @@ extern const struct encoder_plugin vorbis_encoder_plugin;
extern const struct encoder_plugin lame_encoder_plugin;
extern const struct encoder_plugin twolame_encoder_plugin;
extern const struct encoder_plugin wave_encoder_plugin;
+extern const struct encoder_plugin flac_encoder_plugin;
static const struct encoder_plugin *encoder_plugins[] = {
&null_encoder_plugin,
@@ -43,6 +44,9 @@ static const struct encoder_plugin *encoder_plugins[] = {
#ifdef ENABLE_WAVE_ENCODER
&wave_encoder_plugin,
#endif
+#ifdef ENABLE_FLAC_ENCODER
+ &flac_encoder_plugin,
+#endif
NULL
};