aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-14 23:09:02 +0100
committerMax Kellermann <max@duempel.org>2009-01-14 23:09:02 +0100
commitb5cadc9c04c6a37c81475d5c8240a4e485f73555 (patch)
tree6f83291d776d356fb3a884ea840048f0e4b6256e /src/decoder_list.c
parentb8e06d414ac0dabb063e52a9caed495db67ef547 (diff)
downloadmpd-b5cadc9c04c6a37c81475d5c8240a4e485f73555.tar.gz
mpd-b5cadc9c04c6a37c81475d5c8240a4e485f73555.tar.xz
mpd-b5cadc9c04c6a37c81475d5c8240a4e485f73555.zip
oggvorbis: no CamelCase
Renamed functions and variables.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r--src/decoder_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c
index 13e3ec047..43f954b4c 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -24,7 +24,7 @@
#include <glib.h>
extern const struct decoder_plugin mp3Plugin;
-extern const struct decoder_plugin oggvorbisPlugin;
+extern const struct decoder_plugin vorbis_decoder_plugin;
extern const struct decoder_plugin flacPlugin;
extern const struct decoder_plugin oggflacPlugin;
extern const struct decoder_plugin audiofilePlugin;
@@ -41,7 +41,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&mp3Plugin,
#endif
#ifdef HAVE_OGGVORBIS
- &oggvorbisPlugin,
+ &vorbis_decoder_plugin,
#endif
#if defined(HAVE_FLAC) || defined(HAVE_OGGFLAC)
&oggflacPlugin,