X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=h264encode.h;h=eadfca7f50a9e8bd19ddb011793dab46ac9f3c7e;hb=64b8430160caae390a7e408a6c7d9629dc08e923;hp=581131968a461edcb0cb11124232bcf6797fc638;hpb=3ed9b0fbb73071284aa7fa221ce0373d2dadbc85;p=nageru diff --git a/h264encode.h b/h264encode.h index 5811319..eadfca7 100644 --- a/h264encode.h +++ b/h264encode.h @@ -27,9 +27,12 @@ #define _H264ENCODE_H extern "C" { +#include #include } #include +#include +#include #include #include #include @@ -39,19 +42,20 @@ extern "C" { #include #include -#include "bmusb.h" +#include "bmusb/bmusb.h" #include "context.h" #include "pbo_frame_allocator.h" #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); @@ -66,21 +70,29 @@ public: }; void #endif + void add_audio(int64_t pts, std::vector audio); // Needs to come before end_frame() of same pts. bool begin_frame(GLuint *y_tex, GLuint *cbcr_tex); - void end_frame(RefCountedGLsync fence, std::vector audio, const std::vector &input_frames); + void end_frame(RefCountedGLsync fence, int64_t pts, const std::vector &input_frames); private: struct storage_task { unsigned long long display_order; - unsigned long long encode_order; int frame_type; std::vector audio; + int64_t pts, dts; + }; + struct PendingFrame { + RefCountedGLsync fence; + std::vector input_frames; + int64_t pts; }; void copy_thread_func(); + void encode_frame(PendingFrame frame, int encoding_frame_num, int display_frame_num, int gop_start_display_frame_num, + int frame_type, int64_t pts, int64_t dts); void storage_task_thread(); void storage_task_enqueue(storage_task task); - int save_codeddata(storage_task task); + void save_codeddata(storage_task task); std::thread copy_thread, storage_thread; @@ -98,17 +110,12 @@ private: //int ; int current_storage_frame; - struct PendingFrame { - RefCountedGLsync fence; - std::vector input_frames; - std::vector audio; - }; - std::map pending_frames; + std::map pending_video_frames; // under frame_queue_mutex + std::map> pending_audio_frames; // under frame_queue_mutex QSurface *surface; - AVFormatContext *avctx; - AVStream *avstream_video; - AVStream *avstream_audio; + AVCodecContext *context_audio; + HTTPD *httpd; }; #endif