diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-19 23:20:05 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-19 23:20:05 +0100 |
commit | dd17c86aa11feae2b86de054dd0679cc5f88ebab (patch) | |
tree | 6d3527046cfa7cd95718fbc9948aceb0b80873c2 | |
parent | b7a543707f2787bd97b8974c27341899b991d0ff (diff) | |
download | ffmpeg-dd17c86aa11feae2b86de054dd0679cc5f88ebab.tar.gz |
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>
-rw-r--r-- | libavformat/matroskadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 78e5a4a203..594543748d 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -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; |