]> git.sesse.net Git - nageru/blobdiff - futatabi/video_stream.h
Make duplicated rows show up after the old ones, and also give them new IDs.
[nageru] / futatabi / video_stream.h
index d0634e0d7b563c84d9c12b1471376009afb8003e..906cd77af9224056e6524c3a01a7c91ab0e061bf 100644 (file)
@@ -5,14 +5,16 @@
 #include <stdint.h>
 
 extern "C" {
+#include <libavformat/avformat.h>
 #include <libavformat/avio.h>
 }
 
 #include "frame_on_disk.h"
 #include "jpeg_frame_view.h"
-#include "shared/ref_counted_gl_sync.h"
 #include "queue_spot_holder.h"
+#include "shared/ref_counted_gl_sync.h"
 
+#include <atomic>
 #include <chrono>
 #include <condition_variable>
 #include <deque>
@@ -34,7 +36,7 @@ class YCbCrConverter;
 
 class VideoStream {
 public:
-       VideoStream();
+       VideoStream(AVFormatContext *file_avctx);  // nullptr if output to stream.
        ~VideoStream();
        void start();
        void stop();
@@ -52,11 +54,11 @@ public:
                                  FrameOnDisk frame1, FrameOnDisk frame2,
                                  float fade_alpha);
        void schedule_interpolated_frame(std::chrono::steady_clock::time_point, int64_t output_pts,
-                                 std::function<void(std::shared_ptr<Frame>)> &&display_func,
-                                 QueueSpotHolder &&queue_spot_holder,
-                                 FrameOnDisk frame1, FrameOnDisk frame2,
-                                 float alpha, FrameOnDisk secondary_frame = {},  // Empty = no secondary (fade) frame.
-                                 float fade_alpha = 0.0f);
+                                        std::function<void(std::shared_ptr<Frame>)> &&display_func,
+                                        QueueSpotHolder &&queue_spot_holder,
+                                        FrameOnDisk frame1, FrameOnDisk frame2,
+                                        float alpha, FrameOnDisk secondary_frame = {},  // Empty = no secondary (fade) frame.
+                                        float fade_alpha = 0.0f);
        void schedule_refresh_frame(std::chrono::steady_clock::time_point, int64_t output_pts,
                                    std::function<void()> &&display_func,
                                    QueueSpotHolder &&queue_spot_holder);
@@ -66,6 +68,7 @@ private:
 
        void encode_thread_func();
        std::thread encode_thread;
+       std::atomic<bool> should_quit{ false };
 
        static int write_packet2_thunk(void *opaque, uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
        int write_packet2(uint8_t *buf, int buf_size, AVIODataMarkerType type, int64_t time);
@@ -93,10 +96,10 @@ private:
        static constexpr size_t num_interpolate_slots = 15;  // Should be larger than Player::max_queued_frames, or we risk mass-dropping frames.
 
        struct IFRReleaser {
-               void operator() (InterpolatedFrameResources *ifr) const
+               void operator()(InterpolatedFrameResources *ifr) const
                {
                        if (ifr != nullptr) {
-                               std::unique_lock<std::mutex> lock(ifr->owner->queue_lock);
+                               std::lock_guard<std::mutex> lock(ifr->owner->queue_lock);
                                ifr->owner->interpolate_resources.emplace_back(ifr);
                        }
                }
@@ -118,7 +121,7 @@ private:
                float alpha;
                BorrowedInterpolatedFrameResources resources;
                RefCountedGLsync fence;  // Set when the interpolated image is read back to the CPU.
-               GLuint flow_tex, output_tex, cbcr_tex;  // Released in the receiving thread; not really used for anything else.
+               GLuint flow_tex, output_tex, cbcr_tex;  // Released in the receiving thread; not really used for anything else. flow_tex will typically even be from a previous frame.
                FrameOnDisk id;
 
                std::function<void()> display_func;  // Called when the image is done decoding.
@@ -129,9 +132,11 @@ private:
        std::deque<QueuedFrame> frame_queue;  // Under <queue_lock>.
        std::condition_variable queue_changed;
 
-       std::unique_ptr<Mux> stream_mux;  // To HTTP.
-       std::string stream_mux_header;
+       AVFormatContext *avctx;
+       std::unique_ptr<Mux> mux;  // To HTTP, or to file.
+       std::string stream_mux_header;  // Only used in HTTP.
        bool seen_sync_markers = false;
+       bool output_fast_forward;
 
        std::unique_ptr<YCbCrConverter> ycbcr_converter;
        std::unique_ptr<YCbCrConverter> ycbcr_semiplanar_converter;
@@ -141,6 +146,10 @@ private:
        std::unique_ptr<Interpolate> interpolate, interpolate_no_split;
        std::unique_ptr<ChromaSubsampler> chroma_subsampler;
 
+       // Cached flow computation from previous frame, if any.
+       GLuint last_flow_tex = 0;
+       FrameOnDisk last_frame1, last_frame2;
+
        std::vector<uint8_t> last_frame;
 };