]> git.sesse.net Git - nageru/blobdiff - jpeg_frame_view.h
Convert Y'CbCr using Movit instead of in software with Qt. Saves a fair amount of...
[nageru] / jpeg_frame_view.h
index e5665cded5948c66c3fd0c841c1df7669afd7a4a..43418192bfa1969b6f731ea579183c8696b34dbf 100644 (file)
@@ -1,15 +1,22 @@
 #ifndef _JPEG_FRAME_VIEW_H
 #define _JPEG_FRAME_VIEW_H 1
 
-#include <QGraphicsView>
-#include <QGraphicsPixmapItem>
-#include <QGraphicsScene>
+#include <epoxy/gl.h>
+#include <QGLWidget>
 
 #include <stdint.h>
 
+#include <movit/effect_chain.h>
+#include <movit/ycbcr_input.h>
+
 #include <memory>
 
-class JPEGFrameView : public QGraphicsView {
+struct Frame {
+       std::unique_ptr<uint8_t[]> y, cb, cr;
+       unsigned width, height;
+};
+
+class JPEGFrameView : public QGLWidget {
        Q_OBJECT
 
 public:
@@ -22,20 +29,22 @@ public:
                update_frame();
        }
 
-       void setPixmap(std::shared_ptr<QPixmap> pixmap);
+       void setDecodedFrame(std::shared_ptr<Frame> frame);
 
 protected:
-       void resizeEvent(QResizeEvent *event) override;
+       void initializeGL() override;
+       void resizeGL(int width, int height) override;
+       void paintGL() override;
 
 private:
        void update_frame();
 
-       QGraphicsPixmapItem item;
-       QGraphicsScene scene;
-
        unsigned stream_idx;
        int64_t pts;
-       bool dirty = false;
+
+       std::unique_ptr<movit::EffectChain> chain;
+       std::shared_ptr<Frame> current_frame;  // So that we hold on to the pixels.
+       movit::YCbCrInput *ycbcr_input;
 };
 
 #endif  // !defined(_JPEG_FRAME_VIEW_H)