diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-10-26 20:02:34 +0100 |
---|---|---|
committer | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-10-26 20:02:34 +0100 |
commit | a13e9832e77580956efd6ea9c6ec11bdb4ae2d4b (patch) | |
tree | 518f54ed3b389745ab3160a8a6926a07250ae34d /src/encoder_list.c | |
parent | f67426871bf11c79bf5bf975ad2adaa860a7378e (diff) | |
download | mpd-a13e9832e77580956efd6ea9c6ec11bdb4ae2d4b.tar.gz mpd-a13e9832e77580956efd6ea9c6ec11bdb4ae2d4b.tar.xz mpd-a13e9832e77580956efd6ea9c6ec11bdb4ae2d4b.zip |
encoder: renaming none_encoder to null_encoder
Diffstat (limited to 'src/encoder_list.c')
-rw-r--r-- | src/encoder_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/encoder_list.c b/src/encoder_list.c index 48660343b..ad10e4e28 100644 --- a/src/encoder_list.c +++ b/src/encoder_list.c @@ -23,13 +23,13 @@ #include <string.h> -extern const struct encoder_plugin none_encoder_plugin; +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; static const struct encoder_plugin *encoder_plugins[] = { - &none_encoder_plugin, + &null_encoder_plugin, #ifdef ENABLE_VORBIS_ENCODER &vorbis_encoder_plugin, #endif |