decoder/ffpmeg: rename functions to CamelCase

This commit is contained in:
Max Kellermann
2014-12-10 13:05:28 +01:00
parent 923c402f69
commit 5e3f3b0400
3 changed files with 17 additions and 17 deletions

View File

@@ -711,11 +711,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;