From: James Almer Date: Tue, 27 Apr 2021 22:20:37 +0000 (-0300) Subject: avcodec/packet_internal: move the next pointer in PacketList to the top of the struct X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0814610ee35614e417d6942784f7b299f2414a9b;p=ffmpeg avcodec/packet_internal: move the next pointer in PacketList to the top of the struct Signed-off-by: James Almer --- 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; /**