Browse Source

avformat/matroskadec: use proper types for some EbmlSyntax fields

Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit f34aabfbae)
tags/n4.2.1
James Almer 6 years ago
parent
commit
6a19167a6f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/matroskadec.c

+ 2
- 2
libavformat/matroskadec.c View File

@@ -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;


Loading…
Cancel
Save