1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

avformat/matroskadec: Use correct type for field_order

It is unsigned in the spec and read from an uint64_t field.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-01-19 23:20:05 +01:00
parent b7a543707f
commit dd17c86aa1

View File

@ -2095,7 +2095,7 @@ static int matroska_parse_flac(AVFormatContext *s,
return 0;
}
static int mkv_field_order(MatroskaDemuxContext *matroska, int64_t field_order)
static int mkv_field_order(MatroskaDemuxContext *matroska, uint64_t field_order)
{
int minor, micro, bttb = 0;