]> git.sesse.net Git - nageru/blobdiff - h264encode.h
Unify muxing between the local file and networking.
[nageru] / h264encode.h
index ec49fb71dde19f801b5a4f95f106c1cdc8089a04..7a10d927ca84f94a7f8abc74fb7c6c7910b2e8d0 100644 (file)
@@ -45,13 +45,14 @@ extern "C" {
 #include "ref_counted_frame.h"
 #include "ref_counted_gl_sync.h"
 
+class HTTPD;
 class QSurface;
 
 #define SURFACE_NUM 16 /* 16 surfaces for source YUV */
 
 class H264Encoder {
 public:
-       H264Encoder(QSurface *surface, int width, int height, const char *output_filename);
+       H264Encoder(QSurface *surface, int width, int height, HTTPD *httpd);
        ~H264Encoder();
        //void add_frame(FrameAllocator::Frame frame, GLsync fence);
 
@@ -73,9 +74,9 @@ public:
 private:
        struct storage_task {
                unsigned long long display_order;
-               unsigned long long encode_order;
                int frame_type;
                std::vector<float> audio;
+               int64_t pts, dts;
        };
 
        void copy_thread_func();
@@ -102,15 +103,14 @@ private:
        struct PendingFrame {
                RefCountedGLsync fence;
                std::vector<RefCountedFrame> input_frames;
+               int64_t pts;
        };
        std::map<int, PendingFrame> pending_video_frames;  // under frame_queue_mutex
        std::map<int64_t, std::vector<float>> pending_audio_frames;  // under frame_queue_mutex
-       std::map<int, int64_t> timestamps;  // under frame_queue_mutex
        QSurface *surface;
 
-       AVFormatContext *avctx;
-       AVStream *avstream_video;
-       AVStream *avstream_audio;
+       AVCodecContext *context_audio;
+       HTTPD *httpd;
 };
 
 #endif