diff options
author | James Almer <jamrial@gmail.com> | 2019-09-03 18:52:51 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-09-04 16:30:46 -0300 |
commit | 6a19167a6f03c932d15e078332b4968bbd2aa0ee (patch) | |
tree | 3338f9533090aa58b87270767bac92527de24194 | |
parent | 457ed86478e9019d6da2949965867b02065815ad (diff) | |
download | ffmpeg-6a19167a6f03c932d15e078332b4968bbd2aa0ee.tar.gz |
avformat/matroskadec: use proper types for some EbmlSyntax fields
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit f34aabfbaeaef79f9660b76490840fe155a19232)
-rw-r--r-- | libavformat/matroskadec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 1ea9b807e6..439ee462a5 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -97,8 +97,8 @@ typedef enum { typedef const struct EbmlSyntax { uint32_t id; EbmlType type; - int list_elem_size; - int data_offset; + size_t list_elem_size; + size_t data_offset; union { int64_t i; uint64_t u; |