encoder: renaming none_encoder to null_encoder

This commit is contained in:
Viliam Mateicka
2009-10-26 20:02:34 +01:00
parent f67426871b
commit a13e9832e7
3 changed files with 28 additions and 28 deletions

View File

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