]> git.sesse.net Git - nageru/blobdiff - mux.h
Set x264 global headers (Quick Sync global headers are still not there).
[nageru] / mux.h
diff --git a/mux.h b/mux.h
index 2aefffcfeae704736a2ab1b8b3fd25593d1b1756..c161b298d2e27408b4bbb23fc3f596abfd456515 100644 (file)
--- a/mux.h
+++ b/mux.h
@@ -9,6 +9,14 @@ extern "C" {
 #include <libavformat/avio.h>
 }
 
+#include <mutex>
+
+class KeyFrameSignalReceiver {
+public:
+       // Needs to automatically turn the flag off again after actually receiving data.
+       virtual void signal_keyframe() = 0;
+};
+
 class Mux {
 public:
        enum Codec {
@@ -16,14 +24,16 @@ 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. <keyframe_signal_receiver> can be nullptr.
+       Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const std::string &video_extradata, const AVCodecContext *audio_ctx, int time_base, KeyFrameSignalReceiver *keyframe_signal_receiver);
        ~Mux();
        void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
 
 private:
-       bool seen_keyframe = false;
-       AVFormatContext *avctx;
+       std::mutex ctx_mu;
+       AVFormatContext *avctx;  // Protected by <ctx_mu>.
        AVStream *avstream_video, *avstream_audio;
+       KeyFrameSignalReceiver *keyframe_signal_receiver;
 };
 
 #endif  // !defined(_MUX_H)