diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-01-10 11:04:36 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-07 00:31:23 +0100 |
commit | e6469e68cc06f0a9a6842f250af5e1f9b97876ca (patch) | |
tree | dde8f15478c42a1cb105b64398416154bec8b158 /fftools/ffmpeg.h | |
parent | bdf9ed41fe4bdf4e254615b7333ab0feb1977e98 (diff) | |
download | ffmpeg-e6469e68cc06f0a9a6842f250af5e1f9b97876ca.tar.gz |
ffmpeg: switch to new FIFO API
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 9b200b806a..81ec4d5970 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -241,7 +241,7 @@ typedef struct InputFilter { uint8_t *name; enum AVMediaType type; // AVMEDIA_TYPE_SUBTITLE for sub2video - AVFifoBuffer *frame_queue; + AVFifo *frame_queue; // parameters configured for this input int format; @@ -355,7 +355,7 @@ typedef struct InputStream { struct sub2video { int64_t last_pts; int64_t end_pts; - AVFifoBuffer *sub_queue; ///< queue of AVSubtitle* before filter init + AVFifo *sub_queue; ///< queue of AVSubtitle* before filter init AVFrame *frame; int w, h; unsigned int initialize; ///< marks if sub2video_update should force an initialization @@ -555,7 +555,7 @@ typedef struct OutputStream { int max_muxing_queue_size; /* the packets are buffered here until the muxer is ready to be initialized */ - AVFifoBuffer *muxing_queue; + AVFifo *muxing_queue; /* * The size of the AVPackets' buffers in queue. |