X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=h264encode.h;h=520a168be0e0ae11b96c410e93834eb09270dce0;hb=408b03dbd380f3b2ea89fc20915c38bd4e4b9750;hp=b6f783746777680644ff72eb5ddf75d30f35e552;hpb=9b9f5c84113b8a818f296467fd2150ce6a095fbe;p=nageru diff --git a/h264encode.h b/h264encode.h index b6f7837..520a168 100644 --- a/h264encode.h +++ b/h264encode.h @@ -81,8 +81,14 @@ private: 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, int64_t pts, int64_t dts); void storage_task_thread(); void storage_task_enqueue(storage_task task); void save_codeddata(storage_task task); @@ -103,11 +109,6 @@ private: //int ; int current_storage_frame; - struct PendingFrame { - RefCountedGLsync fence; - std::vector input_frames; - int64_t pts; - }; std::map pending_video_frames; // under frame_queue_mutex std::map> pending_audio_frames; // under frame_queue_mutex QSurface *surface;