]> git.sesse.net Git - nageru/blobdiff - httpd.h
Unify muxing between the local file and networking.
[nageru] / httpd.h
diff --git a/httpd.h b/httpd.h
index 0a092aaadd3e7c3a926c2920925277764958a858..524c8d61637e41fd059732271dc0d5d5938f82cd 100644 (file)
--- a/httpd.h
+++ b/httpd.h
@@ -1,6 +1,13 @@
 #ifndef _HTTPD_H
 #define _HTTPD_H
 
+// A class dealing with stream output, both to HTTP (thus the class name)
+// and to local output files. Since we generally have very few outputs
+// (end clients are not meant to connect directly to our stream; it should be
+// transcoded by something else and then sent to a reflector), we don't need to
+// care a lot about performance. Thus, we solve this by the simplest possible
+// way, namely having one ffmpeg mux per output.
+
 #include <microhttpd.h>
 #include <deque>
 #include <string>
@@ -14,9 +21,9 @@ extern "C" {
 
 class HTTPD {
 public:
-       HTTPD();
+       HTTPD(const char *output_filename, int width, int height);
        void start(int port);
-       void add_packet(const AVPacket &pkt);
+       void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
 
 private:
        static int answer_to_connection_thunk(void *cls, MHD_Connection *connection,
@@ -31,23 +38,32 @@ private:
 
        static void free_stream(void *cls);
 
+       class Mux {
+       public:
+               Mux(AVFormatContext *avctx, int width, int height);  // Takes ownership of avctx.
+               ~Mux();
+               void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
+
+       private:
+               AVFormatContext *avctx;
+               AVStream *avstream_video, *avstream_audio;
+       };
+
        class Stream {
        public:
-               Stream(AVOutputFormat *oformat);
-               ~Stream();
+               Stream(AVOutputFormat *oformat, int width, int height);
 
                static ssize_t reader_callback_thunk(void *cls, uint64_t pos, char *buf, size_t max);
                ssize_t reader_callback(uint64_t pos, char *buf, size_t max);
 
-               void add_packet(const AVPacket &pkt);
+               void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
 
        private:
                static int write_packet_thunk(void *opaque, uint8_t *buf, int buf_size);
                int write_packet(uint8_t *buf, int buf_size);
 
                AVIOContext *avio;
-               AVFormatContext *avctx;
-               AVStream *avstream_video, *avstream_audio;
+               std::unique_ptr<Mux> mux;
 
                std::mutex buffer_mutex;
                std::condition_variable has_buffered_data;
@@ -56,6 +72,9 @@ private:
        };
 
        std::vector<Stream *> streams;  // Not owned.
+
+       int width, height;
+       std::unique_ptr<Mux> file_mux;  // To local disk.
 };
 
 #endif  // !defined(_HTTPD_H)