From d438540d2b2f4aea86a2c475b690b8bc1bff7d0e Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 18 Sep 2022 00:39:42 +0200 Subject: [PATCH] avformat/spdifenc: Reorder struct members to make it smaller Signed-off-by: Andreas Rheinhardt --- libavformat/spdifenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),