avcodec/packet: Remove AVPacketList

Deprecated in f7db77bd87
on 2021-03-17.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2026-05-03 11:44:46 +02:00
parent e930e2e60a
commit c03d6ba2eb

View File

@@ -647,14 +647,6 @@ typedef struct AVPacket {
AVRational time_base;
} AVPacket;
#if FF_API_INIT_PACKET
attribute_deprecated
typedef struct AVPacketList {
AVPacket pkt;
struct AVPacketList *next;
} AVPacketList;
#endif
#define AV_PKT_FLAG_KEY 0x0001 ///< The packet contains a keyframe
#define AV_PKT_FLAG_CORRUPT 0x0002 ///< The packet content is corrupted
/**