X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=jpeg_frame_view.h;h=bc36283774e987c69dd14692210722ac4d10bca8;hb=bdef311c334b674ba39a931805fb7d32ce8698da;hp=65a6608991ce8337616afdaf3d7f6f12a64d9362;hpb=c786b9e247c7169e7a8097b37259dfa6ecd5a953;p=nageru diff --git a/jpeg_frame_view.h b/jpeg_frame_view.h index 65a6608..bc36283 100644 --- a/jpeg_frame_view.h +++ b/jpeg_frame_view.h @@ -1,6 +1,7 @@ #ifndef _JPEG_FRAME_VIEW_H #define _JPEG_FRAME_VIEW_H 1 +#include "frame_on_disk.h" #include "jpeg_frame.h" #include "ycbcr_converter.h" @@ -14,18 +15,13 @@ #include #include -struct JPEGID { - unsigned stream_idx; - int64_t pts; -}; 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 @@ -33,7 +29,7 @@ class JPEGFrameView : public QGLWidget { public: JPEGFrameView(QWidget *parent); - void setFrame(unsigned stream_idx, int64_t pts, int secondary_stream_idx = -1, int64_t secondary_pts = -1, float fade_alpha = 0.0f); + 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;