aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-04 16:55:11 +0100
committerMax Kellermann <max@duempel.org>2008-11-04 16:55:11 +0100
commit5e486964e81462c2e178b6967dda1f73cda57d9c (patch)
tree4a62ab70e0bb92941711e614232c693be37c530c /src/decoder_list.c
parente26bff9b92b78999aadf80afa6c674c30d6d7be1 (diff)
ffmpeg: no CamelCase
Renamed 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 edd147f5..f6041a5e 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -31,7 +31,7 @@ extern const struct decoder_plugin aacPlugin;
extern const struct decoder_plugin mpcPlugin;
extern const struct decoder_plugin wavpackPlugin;
extern const struct decoder_plugin modPlugin;
-extern const struct decoder_plugin ffmpegPlugin;
+extern const struct decoder_plugin ffmpeg_plugin;
static const struct decoder_plugin *const decoder_plugins[] = {
#ifdef HAVE_MAD
@@ -65,7 +65,7 @@ static const struct decoder_plugin *const decoder_plugins[] = {
&modPlugin,
#endif
#ifdef HAVE_FFMPEG
- &ffmpegPlugin,
+ &ffmpeg_plugin,
#endif
};