diff options
author | Max Kellermann <max@duempel.org> | 2014-12-10 13:05:28 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-10 13:05:28 +0100 |
commit | 0c1e428c7d0d0b3d378b62be012e3c3709f0448e (patch) | |
tree | 941074a793c3cce96d18e8fb2dfe9f9adc896e12 /src/decoder/plugins/FfmpegDecoderPlugin.cxx | |
parent | bcd97f5887b1f5b2eca9132d34c8d64913b8236b (diff) | |
download | mpd-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.cxx | 6 |
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; |