mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 03:28:27 +00:00
lavf/webvttenc: use proper printf format for int64_t values
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
1bbf94d84f
commit
d49252721a
@ -38,9 +38,9 @@ static void webvtt_write_time(AVIOContext *pb, int64_t millisec)
|
||||
min -= 60 * hour;
|
||||
|
||||
if (hour > 0)
|
||||
avio_printf(pb, "%ld:", hour);
|
||||
avio_printf(pb, "%"PRId64":", hour);
|
||||
|
||||
avio_printf(pb, "%02ld:%02ld.%03ld", min, sec, millisec);
|
||||
avio_printf(pb, "%02"PRId64":%02"PRId64".%03"PRId64"", min, sec, millisec);
|
||||
}
|
||||
|
||||
static int webvtt_write_header(AVFormatContext *ctx)
|
||||
|
Loading…
Reference in New Issue
Block a user