summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg_mux.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-13 15:29:29 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-18 13:57:43 +0200
commitee0a900e5817148c8343f8f95e7b811b069704f4 (patch)
treeb174b3ff208bde792e096f63b71c94a55b4c690e /fftools/ffmpeg_mux.h
parentd6195c88e232ce936fab1ac36fc296bf42497225 (diff)
downloadffmpeg-ee0a900e5817148c8343f8f95e7b811b069704f4.tar.gz
fftools/ffmpeg_mux: move sq_mux from OutputFile to Muxer
It is internal to ffmpeg_mux* and does not need to be visible to other code.
Diffstat (limited to 'fftools/ffmpeg_mux.h')
-rw-r--r--fftools/ffmpeg_mux.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fftools/ffmpeg_mux.h b/fftools/ffmpeg_mux.h
index d9c4dce750..7cb1337b49 100644
--- a/fftools/ffmpeg_mux.h
+++ b/fftools/ffmpeg_mux.h
@@ -68,6 +68,7 @@ typedef struct Muxer {
atomic_int_least64_t last_filesize;
int header_written;
+ SyncQueue *sq_mux;
AVPacket *sq_pkt;
} Muxer;