encoder: new encoder plugin which just pass data through

This commit is contained in:
Viliam Mateicka
2009-10-24 19:01:15 +02:00
parent 7b343eaf50
commit 2bfddd4310
3 changed files with 127 additions and 0 deletions

View File

@@ -23,11 +23,13 @@
#include <string.h>
extern const struct encoder_plugin none_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;
static const struct encoder_plugin *encoder_plugins[] = {
&none_encoder_plugin,
#ifdef ENABLE_VORBIS_ENCODER
&vorbis_encoder_plugin,
#endif