]> git.sesse.net Git - nageru/blob - jpeg_frame_view.h
Make VideoStream capable of using the shared JPEG cache, saving lots of CPU.
[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/ycbcr_input.h>
11
12 #include <memory>
13
14 struct JPEGID {
15         unsigned stream_idx;
16         int64_t pts;
17 };
18 struct Frame {
19         std::unique_ptr<uint8_t[]> y, cb, cr;
20         unsigned width, height;
21         unsigned chroma_subsampling_x, chroma_subsampling_y;
22         unsigned pitch_y, pitch_chroma;
23 };
24 enum CacheMissBehavior {
25         DECODE_IF_NOT_IN_CACHE,
26         RETURN_NULLPTR_IF_NOT_IN_CACHE
27 };
28
29 std::string filename_for_frame(unsigned stream_idx, int64_t pts);
30 std::shared_ptr<Frame> decode_jpeg(const std::string &filename);
31 std::shared_ptr<Frame> decode_jpeg_with_cache(JPEGID id, CacheMissBehavior cache_miss_behavior, bool *did_decode);
32
33 class JPEGFrameView : public QGLWidget {
34         Q_OBJECT
35
36 public:
37         JPEGFrameView(QWidget *parent);
38
39         void setFrame(unsigned stream_idx, int64_t pts)
40         {
41                 this->stream_idx = stream_idx;
42                 this->pts = pts;
43                 update_frame();
44         }
45
46         unsigned get_stream_idx() const { return stream_idx; }
47
48         void setDecodedFrame(std::shared_ptr<Frame> frame);
49
50 protected:
51         void initializeGL() override;
52         void resizeGL(int width, int height) override;
53         void paintGL() override;
54
55 private:
56         void update_frame();
57
58         unsigned stream_idx;
59         int64_t pts;
60
61         std::unique_ptr<movit::EffectChain> chain;
62         std::shared_ptr<Frame> current_frame;  // So that we hold on to the pixels.
63         movit::YCbCrInput *ycbcr_input;
64         movit::YCbCrFormat ycbcr_format;
65 };
66
67 #endif  // !defined(_JPEG_FRAME_VIEW_H)