aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/plugins/FfmpegDecoderPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-10 13:05:28 +0100
committerMax Kellermann <max@duempel.org>2014-12-10 13:05:28 +0100
commit0c1e428c7d0d0b3d378b62be012e3c3709f0448e (patch)
tree941074a793c3cce96d18e8fb2dfe9f9adc896e12 /src/decoder/plugins/FfmpegDecoderPlugin.cxx
parentbcd97f5887b1f5b2eca9132d34c8d64913b8236b (diff)
downloadmpd-0c1e428c7d0d0b3d378b62be012e3c3709f0448e.tar.gz
mpd-0c1e428c7d0d0b3d378b62be012e3c3709f0448e.tar.xz
mpd-0c1e428c7d0d0b3d378b62be012e3c3709f0448e.zip
decoder/ffpmeg: rename functions to CamelCase
Diffstat (limited to 'src/decoder/plugins/FfmpegDecoderPlugin.cxx')
-rw-r--r--src/decoder/plugins/FfmpegDecoderPlugin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder/plugins/FfmpegDecoderPlugin.cxx b/src/decoder/plugins/FfmpegDecoderPlugin.cxx
index e150fa3bf..7adbb5899 100644
--- a/src/decoder/plugins/FfmpegDecoderPlugin.cxx
+++ b/src/decoder/plugins/FfmpegDecoderPlugin.cxx
@@ -634,11 +634,11 @@ ffmpeg_scan_stream(InputStream &is,
tag_handler_invoke_duration(handler, handler_ctx, duration);
}
- ffmpeg_scan_dictionary(f->metadata, handler, handler_ctx);
+ FfmpegScanDictionary(f->metadata, handler, handler_ctx);
int idx = ffmpeg_find_audio_stream(f);
if (idx >= 0)
- ffmpeg_scan_dictionary(f->streams[idx]->metadata,
- handler, handler_ctx);
+ FfmpegScanDictionary(f->streams[idx]->metadata,
+ handler, handler_ctx);
avformat_close_input(&f);
return true;