avcodec/packet_internal: move the next pointer in PacketList to the top of the struct

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2021-04-27 19:20:37 -03:00
parent bd96c54fe4
commit 0814610ee3

View File

@ -24,8 +24,8 @@
#include "packet.h"
typedef struct PacketList {
AVPacket pkt;
struct PacketList *next;
AVPacket pkt;
} PacketList;
/**