You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
avutil/buffer: Switch AVBuffer API to size_t
Announced in 14040a1d91.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
985c0dac67
commit
ef6a9e5e31
@@ -491,8 +491,8 @@ static void dump_sidedata(void *ctx, const AVStream *st, const char *indent)
|
||||
dump_s12m_timecode(ctx, st, sd);
|
||||
break;
|
||||
default:
|
||||
av_log(ctx, AV_LOG_INFO,
|
||||
"unknown side data type %d (%d bytes)", sd->type, sd->size);
|
||||
av_log(ctx, AV_LOG_INFO, "unknown side data type %d "
|
||||
"(%"SIZE_SPECIFIER" bytes)", sd->type, sd->size);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user