tag/handler: use CamelCase
This commit is contained in:
@@ -390,14 +390,14 @@ FfmpegParseMetaData(Decoder &decoder,
|
||||
|
||||
static void
|
||||
FfmpegScanMetadata(const AVStream &stream,
|
||||
const tag_handler &handler, void *handler_ctx)
|
||||
const TagHandler &handler, void *handler_ctx)
|
||||
{
|
||||
FfmpegScanDictionary(stream.metadata, &handler, handler_ctx);
|
||||
}
|
||||
|
||||
static void
|
||||
FfmpegScanMetadata(const AVFormatContext &format_context, int audio_stream,
|
||||
const tag_handler &handler, void *handler_ctx)
|
||||
const TagHandler &handler, void *handler_ctx)
|
||||
{
|
||||
assert(audio_stream >= 0);
|
||||
|
||||
@@ -614,7 +614,7 @@ ffmpeg_decode(Decoder &decoder, InputStream &input)
|
||||
|
||||
static bool
|
||||
FfmpegScanStream(AVFormatContext &format_context,
|
||||
const struct tag_handler &handler, void *handler_ctx)
|
||||
const TagHandler &handler, void *handler_ctx)
|
||||
{
|
||||
const int find_result =
|
||||
avformat_find_stream_info(&format_context, nullptr);
|
||||
@@ -638,7 +638,7 @@ FfmpegScanStream(AVFormatContext &format_context,
|
||||
|
||||
static bool
|
||||
ffmpeg_scan_stream(InputStream &is,
|
||||
const struct tag_handler *handler, void *handler_ctx)
|
||||
const TagHandler *handler, void *handler_ctx)
|
||||
{
|
||||
AVInputFormat *input_format = ffmpeg_probe(nullptr, is);
|
||||
if (input_format == nullptr)
|
||||
|
Reference in New Issue
Block a user