From 5420f9ae76babdfa4ecf35eaad44f90c5866e59a Mon Sep 17 00:00:00 2001 From: Viliam Mateicka Date: Tue, 17 Nov 2009 19:41:35 +0100 Subject: encoder: introducing flac encoder plugin --- src/encoder_list.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/encoder_list.c') diff --git a/src/encoder_list.c b/src/encoder_list.c index 3be5ef213..d5f0db65a 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, @@ -42,6 +43,9 @@ static const struct encoder_plugin *encoder_plugins[] = { #endif #ifdef ENABLE_WAVE_ENCODER &wave_encoder_plugin, +#endif +#ifdef ENABLE_FLAC_ENCODER + &flac_encoder_plugin, #endif NULL }; -- cgit v1.2.3