aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-15 19:50:28 +0100
committerMax Kellermann <max@duempel.org>2009-01-15 19:50:28 +0100
commit86dc79293f97254c67a4b4170881495d4b05c4ae (patch)
treed2e6b909183444813aa45159c27c48ae73937610 /src/decoder_list.c
parenta7461dc27d697489b7608b020788c251b992b6c3 (diff)
flac: no CamelCase
Renamed types, functions, variables.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r--src/decoder_list.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c
index 43f954b4..c6f8555d 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -25,8 +25,8 @@
extern const struct decoder_plugin mp3Plugin;
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 flac_decoder_plugin;
+extern const struct decoder_plugin oggflac_decoder_plugin;
extern const struct decoder_plugin audiofilePlugin;
extern const struct decoder_plugin mp4_plugin;
extern const struct decoder_plugin aacPlugin;
@@ -44,10 +44,10 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&vorbis_decoder_plugin,
#endif
#if defined(HAVE_FLAC) || defined(HAVE_OGGFLAC)
- &oggflacPlugin,
+ &oggflac_decoder_plugin,
#endif
#ifdef HAVE_FLAC
- &flacPlugin,
+ &flac_decoder_plugin,
#endif
#ifdef HAVE_AUDIOFILE
&audiofilePlugin,