X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=mux.h;h=3f5007db9f75c6040415be1a01ce6ccd74059db0;hb=afe996bc7dfc8689ca356d00824fbfcd632f93a2;hp=2aefffcfeae704736a2ab1b8b3fd25593d1b1756;hpb=410a5fadcba336c918843cd55e1516cf4fe56abc;p=nageru diff --git a/mux.h b/mux.h index 2aefffc..3f5007d 100644 --- a/mux.h +++ b/mux.h @@ -9,6 +9,11 @@ extern "C" { #include } +#include +#include +#include +#include + class Mux { public: enum Codec { @@ -16,14 +21,35 @@ public: CODEC_NV12, // Uncompressed 4:2:0. }; - Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, int time_base); // Takes ownership of avctx. + // Takes ownership of avctx. will be called every time + // a write has been made to the video stream (id 0), with the pts of + // the just-written frame. (write_callback can be nullptr.) + Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const std::string &video_extradata, const AVCodecParameters *audio_codecpar, int time_base, std::function write_callback); ~Mux(); void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts); + // As long as the mux is plugged, it will not actually write anything to disk, + // just queue the packets. Once it is unplugged, the packets are reordered by pts + // and written. This is primarily useful if you might have two different encoders + // writing to the mux at the same time (because one is shutting down), so that + // pts might otherwise come out-of-order. + // + // You can plug and unplug multiple times; only when the plug count reaches zero, + // something will actually happen. + void plug(); + void unplug(); + private: - bool seen_keyframe = false; - AVFormatContext *avctx; + void write_packet_or_die(const AVPacket &pkt); // Must be called with held. + + std::mutex mu; + AVFormatContext *avctx; // Protected by . + int plug_count = 0; // Protected by . + std::vector plugged_packets; // Protected by . + AVStream *avstream_video, *avstream_audio; + + std::function write_callback; }; #endif // !defined(_MUX_H)