4 // Wrapper around an AVFormat mux.
7 #include <libavcodec/avcodec.h>
8 #include <libavformat/avformat.h>
11 #include <sys/types.h>
13 #include <condition_variable>
24 // “written” will usually be equal video + audio + mux overhead,
25 // except that there could be buffered packets that count in audio or video
26 // but not yet in written.
27 std::atomic<int64_t> metric_video_bytes{0}, metric_audio_bytes{0}, metric_written_bytes{0};
29 // Registers in global_metrics.
30 void init(const std::vector<std::pair<std::string, std::string>> &labels);
34 metric_video_bytes = 0;
35 metric_audio_bytes = 0;
36 metric_written_bytes = 0;
44 CODEC_NV12, // Uncompressed 4:2:0.
47 // add_packet() will write the packet immediately, unless plugged.
50 // All writes will happen on a separate thread, so add_packet()
51 // won't block. Use this if writing to a file and you might be
52 // holding a mutex (because blocking I/O with a mutex held is
53 // not good). Note that this will clone every packet, so it has
58 // Takes ownership of avctx. <write_callback> will be called every time
59 // a write has been made to the video stream (id 0), with the pts of
60 // the just-written frame. (write_callback can be nullptr.)
61 // Does not take ownership of <metrics>; elements in there, if any,
63 Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const std::string &video_extradata, const AVCodecParameters *audio_codecpar, int time_base, std::function<void(int64_t)> write_callback, WriteStrategy write_strategy, const std::vector<MuxMetrics *> &metrics);
65 void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts, AVRational timebase = { 1, TIMEBASE }, int stream_index_override = -1);
67 // As long as the mux is plugged, it will not actually write anything to disk,
68 // just queue the packets. Once it is unplugged, the packets are reordered by pts
69 // and written. This is primarily useful if you might have two different encoders
70 // writing to the mux at the same time (because one is shutting down), so that
71 // pts might otherwise come out-of-order.
73 // You can plug and unplug multiple times; only when the plug count reaches zero,
74 // something will actually happen.
79 // If write_strategy == WRITE_FOREGORUND, Must be called with <mu> held.
80 void write_packet_or_die(const AVPacket &pkt, int64_t unscaled_pts);
83 WriteStrategy write_strategy;
87 // These are only in use if write_strategy == WRITE_BACKGROUND.
88 std::atomic<bool> writer_thread_should_quit{false};
89 std::thread writer_thread;
91 AVFormatContext *avctx; // Protected by <mu>, iff write_strategy == WRITE_BACKGROUND.
92 int plug_count = 0; // Protected by <mu>.
94 // Protected by <mu>. If write_strategy == WRITE_FOREGROUND,
95 // this is only in use when plugging.
100 std::vector<QueuedPacket> packet_queue;
101 std::condition_variable packet_queue_ready;
103 AVStream *avstream_video, *avstream_audio;
105 std::function<void(int64_t)> write_callback;
106 std::vector<MuxMetrics *> metrics;
108 friend struct PacketBefore;
111 #endif // !defined(_MUX_H)