Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-04-28 01:20:37 +0300
committerJames Almer <jamrial@gmail.com>2021-04-28 01:20:37 +0300
commit0814610ee35614e417d6942784f7b299f2414a9b (patch)
treea75d9bcc78d093f6b3ff94d13b0f3e5d5318839f /libavcodec/packet_internal.h
parentbd96c54fe4819b3ca9a975e2083d67f4443c559b (diff)
avcodec/packet_internal: move the next pointer in PacketList to the top of the struct
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/packet_internal.h')
-rw-r--r--libavcodec/packet_internal.h2
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;
/**