avformat/mxfenc: Reorder fields in MXFIndexEntry to make it smaller

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Tomas Härdin <tjoppen@acc.umu.se>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Andreas Rheinhardt 2020-03-13 11:18:40 +01:00 committed by Michael Niedermayer
parent b601e24ab3
commit 1fea6795a3
1 changed files with 1 additions and 1 deletions

View File

@ -72,10 +72,10 @@ typedef struct MXFLocalTagPair {
} MXFLocalTagPair;
typedef struct MXFIndexEntry {
uint8_t flags;
uint64_t offset;
unsigned slice_offset; ///< offset of audio slice
uint16_t temporal_ref;
uint8_t flags;
} MXFIndexEntry;
typedef struct MXFStreamContext {