You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +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:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user