diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-04-02 15:52:13 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2009-04-02 15:55:10 -0700 |
commit | fd90db35b7a084b10f4c6d347c5ba6e315bb3f5d (patch) | |
tree | 2d40e4ed68b6f9b6e50ced32935fe3897a717f48 /src/decoder_list.c | |
parent | 9e93875ccd8066dc56eaab6849244189f17b7d70 (diff) | |
download | mpd-fd90db35b7a084b10f4c6d347c5ba6e315bb3f5d.tar.gz mpd-fd90db35b7a084b10f4c6d347c5ba6e315bb3f5d.tar.xz mpd-fd90db35b7a084b10f4c6d347c5ba6e315bb3f5d.zip |
decoder: Rename all main decoder plugins functions to *decoder_plugin.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r-- | src/decoder_list.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index 6e5c8cfd3..8d6e6c2fb 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -31,17 +31,17 @@ extern const struct decoder_plugin mad_decoder_plugin; extern const struct decoder_plugin vorbis_decoder_plugin; 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 audiofile_decoder_plugin; extern const struct decoder_plugin mp4ff_decoder_plugin; extern const struct decoder_plugin faad_decoder_plugin; extern const struct decoder_plugin mpcdec_decoder_plugin; -extern const struct decoder_plugin wavpack_plugin; -extern const struct decoder_plugin modplug_plugin; +extern const struct decoder_plugin wavpack_decoder_plugin; +extern const struct decoder_plugin modplug_decoder_plugin; extern const struct decoder_plugin mikmod_decoder_plugin; extern const struct decoder_plugin sidplay_decoder_plugin; extern const struct decoder_plugin fluidsynth_decoder_plugin; extern const struct decoder_plugin wildmidi_decoder_plugin; -extern const struct decoder_plugin ffmpeg_plugin; +extern const struct decoder_plugin ffmpeg_decoder_plugin; static const struct decoder_plugin *const decoder_plugins[] = { #ifdef HAVE_MAD @@ -57,7 +57,7 @@ static const struct decoder_plugin *const decoder_plugins[] = { &flac_decoder_plugin, #endif #ifdef HAVE_AUDIOFILE - &audiofilePlugin, + &audiofile_decoder_plugin, #endif #ifdef HAVE_FAAD &faad_decoder_plugin, @@ -69,10 +69,10 @@ static const struct decoder_plugin *const decoder_plugins[] = { &mpcdec_decoder_plugin, #endif #ifdef HAVE_WAVPACK - &wavpack_plugin, + &wavpack_decoder_plugin, #endif #ifdef HAVE_MODPLUG - &modplug_plugin, + &modplug_decoder_plugin, #endif #ifdef ENABLE_MIKMOD_DECODER &mikmod_decoder_plugin, @@ -87,7 +87,7 @@ static const struct decoder_plugin *const decoder_plugins[] = { &wildmidi_decoder_plugin, #endif #ifdef HAVE_FFMPEG - &ffmpeg_plugin, + &ffmpeg_decoder_plugin, #endif }; |