Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-10-13 16:29:29 +0300
committerAnton Khirnov <anton@khirnov.net>2022-10-18 14:57:43 +0300
commitee0a900e5817148c8343f8f95e7b811b069704f4 (patch)
treeb174b3ff208bde792e096f63b71c94a55b4c690e /fftools/ffmpeg_mux.h
parentd6195c88e232ce936fab1ac36fc296bf42497225 (diff)
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;