]> git.sesse.net Git - nageru/blob - jpeg_frame_view.h
Implement fades.
[nageru] / jpeg_frame_view.h
1 #ifndef _JPEG_FRAME_VIEW_H
2 #define _JPEG_FRAME_VIEW_H 1
3
4 #include <epoxy/gl.h>
5 #include <QGLWidget>
6
7 #include <stdint.h>
8
9 #include <movit/effect_chain.h>
10 #include <movit/flat_input.h>
11 #include <movit/mix_effect.h>
12 #include <movit/ycbcr_input.h>
13
14 #include <memory>
15 #include <thread>
16
17 #include "jpeg_frame.h"
18 #include "ycbcr_converter.h"
19
20 struct JPEGID {
21         unsigned stream_idx;
22         int64_t pts;
23         bool interpolated;
24 };
25 enum CacheMissBehavior {
26         DECODE_IF_NOT_IN_CACHE,
27         RETURN_NULLPTR_IF_NOT_IN_CACHE
28 };
29
30 std::string filename_for_frame(unsigned stream_idx, int64_t pts);
31 std::shared_ptr<Frame> decode_jpeg(const std::string &filename);
32 std::shared_ptr<Frame> decode_jpeg_with_cache(JPEGID id, CacheMissBehavior cache_miss_behavior, bool *did_decode);
33
34 class JPEGFrameView : public QGLWidget {
35         Q_OBJECT
36
37 public:
38         JPEGFrameView(QWidget *parent);
39
40         void setFrame(unsigned stream_idx, int64_t pts, bool interpolated, int secondary_stream_idx = -1, int64_t secondary_pts = -1, float fade_alpha = 0.0f);
41         static void insert_interpolated_frame(unsigned stream_idx, int64_t pts, std::shared_ptr<Frame> frame);
42
43         void mousePressEvent(QMouseEvent *event) override;
44
45         unsigned get_stream_idx() const { return current_stream_idx; }
46
47         void setDecodedFrame(std::shared_ptr<Frame> frame, std::shared_ptr<Frame> secondary_frame, float fade_alpha);
48         void set_overlay(const std::string &text);  // Blank for none.
49
50         static void shutdown();
51
52 signals:
53         void clicked();
54
55 protected:
56         void initializeGL() override;
57         void resizeGL(int width, int height) override;
58         void paintGL() override;
59
60 private:
61         // The stream index of the latest frame we displayed.
62         unsigned current_stream_idx = 0;
63
64         std::unique_ptr<YCbCrConverter> ycbcr_converter;
65         movit::EffectChain *current_chain = nullptr;  // Owned by ycbcr_converter.
66
67         std::shared_ptr<Frame> current_frame;  // So that we hold on to the pixels.
68         std::shared_ptr<Frame> current_secondary_frame;  // Same.
69
70         static constexpr int overlay_base_width = 16, overlay_base_height = 16;
71         int overlay_width = overlay_base_width, overlay_height = overlay_base_height;
72         std::unique_ptr<QImage> overlay_image;  // If nullptr, no overlay.
73         std::unique_ptr<movit::EffectChain> overlay_chain;  // Just to get the overlay on screen in the easiest way possible.
74         movit::FlatInput *overlay_input;
75         bool overlay_input_needs_refresh = false;
76
77         int gl_width, gl_height;
78
79         static std::thread jpeg_decoder_thread;
80 };
81
82 #endif  // !defined(_JPEG_FRAME_VIEW_H)