diff options
author | James Almer <jamrial@gmail.com> | 2021-04-27 19:20:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-04-27 19:20:37 -0300 |
commit | 0814610ee35614e417d6942784f7b299f2414a9b (patch) | |
tree | a75d9bcc78d093f6b3ff94d13b0f3e5d5318839f | |
parent | bd96c54fe4819b3ca9a975e2083d67f4443c559b (diff) | |
download | ffmpeg-0814610ee35614e417d6942784f7b299f2414a9b.tar.gz |
avcodec/packet_internal: move the next pointer in PacketList to the top of the struct
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/packet_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/packet_internal.h b/libavcodec/packet_internal.h index b1d91f6347..a10931c106 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; /** |