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:
parent
b7a543707f
commit
dd17c86aa1
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user