summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-18 00:39:42 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-20 18:32:28 +0200
commitd438540d2b2f4aea86a2c475b690b8bc1bff7d0e (patch)
treefd0059c8cc9f0782384c0f0c9e970aa803a1ad29
parent2e9fd627ede0911326e925e07117ba2c396abdc0 (diff)
avformat/spdifenc: Reorder struct members to make it smaller
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavformat/spdifenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c
index 7b8e231cff..2861f828b4 100644
--- a/libavformat/spdifenc.c
+++ b/libavformat/spdifenc.c
@@ -410,8 +410,8 @@ static const uint8_t mat_end_code[16] = {
static const struct {
unsigned int pos;
- const uint8_t *code;
unsigned int len;
+ const uint8_t *code;
} mat_codes[] = {
MAT_CODE(0, mat_start_code),
MAT_CODE(30708, mat_middle_code),