diff options
author | Max Kellermann <max@duempel.org> | 2009-01-15 19:50:28 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-15 19:50:28 +0100 |
commit | 86dc79293f97254c67a4b4170881495d4b05c4ae (patch) | |
tree | d2e6b909183444813aa45159c27c48ae73937610 /src/decoder_list.c | |
parent | a7461dc27d697489b7608b020788c251b992b6c3 (diff) | |
download | mpd-86dc79293f97254c67a4b4170881495d4b05c4ae.tar.gz mpd-86dc79293f97254c67a4b4170881495d4b05c4ae.tar.xz mpd-86dc79293f97254c67a4b4170881495d4b05c4ae.zip |
flac: no CamelCase
Renamed types, functions, variables.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r-- | src/decoder_list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index 43f954b4c..c6f8555d4 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, |