X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=jpeg_frame_view.h;h=bc36283774e987c69dd14692210722ac4d10bca8;hb=bdef311c334b674ba39a931805fb7d32ce8698da;hp=8b2c93c8d5dbe245b19c4d80d38f108e2247e1c6;hpb=4254221b8923fb72b877703d8ede6c2b316b9bbf;p=nageru diff --git a/jpeg_frame_view.h b/jpeg_frame_view.h index 8b2c93c..bc36283 100644 --- a/jpeg_frame_view.h +++ b/jpeg_frame_view.h @@ -1,36 +1,27 @@ #ifndef _JPEG_FRAME_VIEW_H #define _JPEG_FRAME_VIEW_H 1 -#include -#include - -#include +#include "frame_on_disk.h" +#include "jpeg_frame.h" +#include "ycbcr_converter.h" +#include +#include +#include #include #include +#include #include +#include +#include -#include - -struct JPEGID { - unsigned stream_idx; - int64_t pts; - bool interpolated; -}; -struct Frame { - std::unique_ptr y, cb, cr; - unsigned width, height; - unsigned chroma_subsampling_x, chroma_subsampling_y; - unsigned pitch_y, pitch_chroma; -}; enum CacheMissBehavior { DECODE_IF_NOT_IN_CACHE, RETURN_NULLPTR_IF_NOT_IN_CACHE }; -std::string filename_for_frame(unsigned stream_idx, int64_t pts); std::shared_ptr decode_jpeg(const std::string &filename); -std::shared_ptr decode_jpeg_with_cache(JPEGID id, CacheMissBehavior cache_miss_behavior, bool *did_decode); +std::shared_ptr decode_jpeg_with_cache(FrameOnDisk id, CacheMissBehavior cache_miss_behavior, bool *did_decode); class JPEGFrameView : public QGLWidget { Q_OBJECT @@ -38,16 +29,18 @@ class JPEGFrameView : public QGLWidget { public: JPEGFrameView(QWidget *parent); - void setFrame(unsigned stream_idx, int64_t pts, bool interpolated); - static void insert_interpolated_frame(unsigned stream_idx, int64_t pts, std::shared_ptr frame); + void setFrame(unsigned stream_idx, FrameOnDisk frame, FrameOnDisk secondary_frame = {}, float fade_alpha = 0.0f); + void setFrame(std::shared_ptr frame); void mousePressEvent(QMouseEvent *event) override; unsigned get_stream_idx() const { return current_stream_idx; } - void setDecodedFrame(std::shared_ptr frame); + void setDecodedFrame(std::shared_ptr frame, std::shared_ptr secondary_frame, float fade_alpha); void set_overlay(const std::string &text); // Blank for none. + static void shutdown(); + signals: void clicked(); @@ -60,10 +53,11 @@ private: // The stream index of the latest frame we displayed. unsigned current_stream_idx = 0; - std::unique_ptr chain; + std::unique_ptr ycbcr_converter; + movit::EffectChain *current_chain = nullptr; // Owned by ycbcr_converter. + std::shared_ptr current_frame; // So that we hold on to the pixels. - movit::YCbCrInput *ycbcr_input; - movit::YCbCrFormat ycbcr_format; + std::shared_ptr current_secondary_frame; // Same. static constexpr int overlay_base_width = 16, overlay_base_height = 16; int overlay_width = overlay_base_width, overlay_height = overlay_base_height; @@ -73,6 +67,8 @@ private: bool overlay_input_needs_refresh = false; int gl_width, gl_height; + + static std::thread jpeg_decoder_thread; }; #endif // !defined(_JPEG_FRAME_VIEW_H)