Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> --- libavformat/aeaenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/aeaenc.c b/libavformat/aeaenc.c index 65d018c844..495e98c6a2 100644 --- a/libavformat/aeaenc.c +++ b/libavformat/aeaenc.c @@ -91,7 +91,7 @@ static int aea_write_trailer(struct AVFormatContext *s) avio_seek(pb, 260, SEEK_SET); total_blocks = st->nb_frames * st->codecpar->ch_layout.nb_channels; if (total_blocks > UINT32_MAX) { - av_log(s, AV_LOG_WARNING, "Too many frames in the file to properly encode the header (%ld)." + av_log(s, AV_LOG_WARNING, "Too many frames in the file to properly encode the header (%"PRId64")." " Block count in the header will be truncated.\n", total_blocks); total_blocks = UINT32_MAX; } -- 2.40.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".