encoder: introducing flac encoder plugin

This commit is contained in:
Viliam Mateicka
2009-11-17 19:41:35 +01:00
parent 39404725f0
commit 5420f9ae76
5 changed files with 324 additions and 0 deletions

View File

@@ -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
};