]> git.sesse.net Git - nageru/blobdiff - mux.h
Separate muxing entirely out of the HTTPD class.
[nageru] / mux.h
diff --git a/mux.h b/mux.h
index 47ff775d8cdf2d0faa2148ae1b55100d2bbcd8b1..2eb8eeaa45f1472f471488736b9638ce382b2407 100644 (file)
--- a/mux.h
+++ b/mux.h
@@ -9,28 +9,28 @@ extern "C" {
 #include <libavformat/avio.h>
 }
 
-class PacketDestination {
+class KeyFrameSignalReceiver {
 public:
-       virtual ~PacketDestination() {}
-       virtual void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts) = 0;
+       // Needs to automatically turn the flag off again after actually receiving data.
+       virtual void signal_keyframe() = 0;
 };
 
-class Mux : public PacketDestination {
+class Mux {
 public:
        enum Codec {
                CODEC_H264,
                CODEC_NV12,  // Uncompressed 4:2:0.
        };
 
-       // Takes ownership of avctx.
-       Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const AVCodec *codec_audio, int time_base, int bit_rate);
+       // Takes ownership of avctx. <keyframe_signal_receiver> can be nullptr.
+       Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const AVCodec *codec_audio, int time_base, int bit_rate, KeyFrameSignalReceiver *keyframe_signal_receiver);
        ~Mux();
-       void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts) override;
+       void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
 
 private:
-       bool seen_keyframe = false;
        AVFormatContext *avctx;
        AVStream *avstream_video, *avstream_audio;
+       KeyFrameSignalReceiver *keyframe_signal_receiver;
 };
 
 #endif  // !defined(_MUX_H)