From 0814610ee35614e417d6942784f7b299f2414a9b Mon Sep 17 00:00:00 2001 From: James Almer Date: Tue, 27 Apr 2021 19:20:37 -0300 Subject: [PATCH] avcodec/packet_internal: move the next pointer in PacketList to the top of the struct Signed-off-by: James Almer --- libavcodec/packet_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/packet_internal.h b/libavcodec/packet_internal.h index b1d91f63472..a10931c106e 100644 --- a/libavcodec/packet_internal.h +++ b/libavcodec/packet_internal.h @@ -24,8 +24,8 @@ #include "packet.h" typedef struct PacketList { - AVPacket pkt; struct PacketList *next; + AVPacket pkt; } PacketList; /** -- 2.39.2