diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-10-24 19:01:15 +0200 |
---|---|---|
committer | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-10-24 19:01:15 +0200 |
commit | 2bfddd43109171accbb307ec136d5a517e52bfff (patch) | |
tree | 959c3a7e05d6fc00cd54978830bdbdd0686c89fc /src/encoder_list.c | |
parent | 7b343eaf5042513e14f4e2f0d0b698ea7c851e15 (diff) | |
download | mpd-2bfddd43109171accbb307ec136d5a517e52bfff.tar.gz mpd-2bfddd43109171accbb307ec136d5a517e52bfff.tar.xz mpd-2bfddd43109171accbb307ec136d5a517e52bfff.zip |
encoder: new encoder plugin which just pass data through
Diffstat (limited to '')
-rw-r--r-- | src/encoder_list.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c index 2016d4cba..48660343b 100644 --- a/src/encoder_list.c +++ b/src/encoder_list.c @@ -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 |