4 // Wrapper around an AVFormat mux.
7 #include <libavcodec/avcodec.h>
8 #include <libavformat/avformat.h>
9 #include <libavformat/avio.h>
21 CODEC_NV12, // Uncompressed 4:2:0.
24 // Takes ownership of avctx. <write_callback> will be called every time
25 // a write has been made to the video stream (id 0), with the pts of
26 // the just-written frame. (write_callback can be nullptr.)
27 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);
29 void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
31 // As long as the mux is plugged, it will not actually write anything to disk,
32 // just queue the packets. Once it is unplugged, the packets are reordered by pts
33 // and written. This is primarily useful if you might have two different encoders
34 // writing to the mux at the same time (because one is shutting down), so that
35 // pts might otherwise come out-of-order.
37 // You can plug and unplug multiple times; only when the plug count reaches zero,
38 // something will actually happen.
43 void write_packet_or_die(const AVPacket &pkt); // Must be called with <mu> held.
46 AVFormatContext *avctx; // Protected by <mu>.
47 int plug_count = 0; // Protected by <mu>.
48 std::vector<AVPacket *> plugged_packets; // Protected by <mu>.
50 AVStream *avstream_video, *avstream_audio;
52 std::function<void(int64_t)> write_callback;
55 #endif // !defined(_MUX_H)