Browse code

avformat/matroskadec: use proper types for some EbmlSyntax fields

Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit f34aabfbaeaef79f9660b76490840fe155a19232)

James Almer authored on 2019/09/04 06:52:51
Showing 1 changed files
... ...
@@ -97,8 +97,8 @@ typedef enum {
97 97
 typedef const struct EbmlSyntax {
98 98
     uint32_t id;
99 99
     EbmlType type;
100
-    int list_elem_size;
101
-    int data_offset;
100
+    size_t list_elem_size;
101
+    size_t data_offset;
102 102
     union {
103 103
         int64_t     i;
104 104
         uint64_t    u;