diff options
Diffstat (limited to '')
-rw-r--r-- | src/encoder_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c index 9b384490c..f9f518936 100644 --- a/src/encoder_list.c +++ b/src/encoder_list.c @@ -23,11 +23,15 @@ #include <string.h> extern const struct encoder_plugin vorbis_encoder_plugin; +extern const struct encoder_plugin lame_encoder_plugin; static const struct encoder_plugin *encoder_plugins[] = { #ifdef ENABLE_VORBIS_ENCODER &vorbis_encoder_plugin, #endif +#ifdef ENABLE_LAME_ENCODER + &lame_encoder_plugin, +#endif NULL }; |