diff options
Diffstat (limited to 'src/encoder_list.c')
-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 ad10e4e28..f4b4392df 100644 --- a/src/encoder_list.c +++ b/src/encoder_list.c @@ -27,6 +27,7 @@ extern const struct encoder_plugin null_encoder_plugin; 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; static const struct encoder_plugin *encoder_plugins[] = { &null_encoder_plugin, @@ -39,6 +40,9 @@ static const struct encoder_plugin *encoder_plugins[] = { #ifdef ENABLE_TWOLAME_ENCODER &twolame_encoder_plugin, #endif +#ifdef ENABLE_WAVE_ENCODER + &wave_encoder_plugin, +#endif NULL }; |