summaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorAndreas Rheinhardt <[email protected]>2020-03-13 11:18:40 +0100
committerMichael Niedermayer <[email protected]>2020-03-14 18:24:04 +0100
commit1fea6795a3f75136a234da80a518303fea8ee83c (patch)
treedb6994493d31e555d27f0ee1a1c9b85cef9308fd /libavformat
parentb601e24ab39b8bdfb4aec49b6b339dd9b34a2b5e (diff)
avformat/mxfenc: Reorder fields in MXFIndexEntry to make it smaller
Signed-off-by: Andreas Rheinhardt <[email protected]> Reviewed-by: Tomas Härdin <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mxfenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 5e0dc0e889..55c715d776 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -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 {