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