diff options
author | James Almer <jamrial@gmail.com> | 2021-03-01 14:10:36 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-03-03 13:10:27 -0300 |
commit | b34d1de8dc64466aea226183bd8701fa8bf95788 (patch) | |
tree | 1b6d039e8bc2a97f50970d803bb4b7db84d40284 /libavcodec/internal.h | |
parent | 7819412f4468514a2bab924291d79806a569388c (diff) | |
download | ffmpeg-b34d1de8dc64466aea226183bd8701fa8bf95788.tar.gz |
avcodec/decode: port last_pkt_props to AVFifoBuffer
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 65760368d6..400ea508ef 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -28,6 +28,7 @@ #include "libavutil/buffer.h" #include "libavutil/channel_layout.h" +#include "libavutil/fifo.h" #include "libavutil/mathematics.h" #include "libavutil/pixfmt.h" #include "avcodec.h" @@ -147,8 +148,7 @@ typedef struct AVCodecInternal { * for decoding. */ AVPacket *last_pkt_props; - AVPacketList *pkt_props; - AVPacketList *pkt_props_tail; + AVFifoBuffer *pkt_props; /** * temporary buffer used for encoders to store their bitstream |