summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg_mux.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-14 11:34:26 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-18 14:19:11 +0200
commitf0cd68eea0e6383049a0c4f80e4eb14c18d225b5 (patch)
tree8707ff04815db5512c4d75a1bf6829cb0e50b173 /fftools/ffmpeg_mux.h
parent2266e0483470cb73147c36bf5ce044b9eef1e841 (diff)
downloadffmpeg-f0cd68eea0e6383049a0c4f80e4eb14c18d225b5.tar.gz
fftools/ffmpeg_mux: move bsf_ctx from OutputStream to MuxStream
It is private to the muxer and does not need to be visible outside of it.
Diffstat (limited to 'fftools/ffmpeg_mux.h')
-rw-r--r--fftools/ffmpeg_mux.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fftools/ffmpeg_mux.h b/fftools/ffmpeg_mux.h
index 45daeb3591..8470f971cc 100644
--- a/fftools/ffmpeg_mux.h
+++ b/fftools/ffmpeg_mux.h
@@ -40,6 +40,8 @@ typedef struct MuxStream {
/* the packets are buffered here until the muxer is ready to be initialized */
AVFifo *muxing_queue;
+ AVBSFContext *bsf_ctx;
+
/*
* The size of the AVPackets' buffers in queue.
* Updated when a packet is either pushed or pulled from the queue.