]> git.sesse.net Git - pkanalytics/blobdiff - video_widget.h
Fix a threading issue, where we would call into the Qt thread from the video thread.
[pkanalytics] / video_widget.h
index 293c968852d4ef976c60ed30394a4740efdc2ad5..1f1ffe2ffb6b8f752fff942a031108dce94f6477 100644 (file)
@@ -37,9 +37,17 @@ public:
        void initializeGL() override;
        void resizeGL(int w, int h) override;
        void paintGL() override;
+       void wheelEvent(QWheelEvent *event) override;
+
+       // For dragging, and for back/forward button presses.
+       void mousePressEvent(QMouseEvent *e);
+       void mouseReleaseEvent(QMouseEvent *e);
+       void mouseMoveEvent(QMouseEvent *e);
 
 signals:
        void position_changed(uint64_t pos);
+       void mouse_back_clicked();
+       void mouse_forward_clicked();
 
 private:
        // Should really have been persistent and a PBO, but this is OK for now.
@@ -59,6 +67,11 @@ private:
        GLuint last_chroma_width = 0, last_chroma_height = 0;
        GLfloat cbcr_offset[2];
        double display_aspect = 1.0;
+       double zoom_matrix[9] = {  // Column-major, to match with OpenGL.
+               1.0, 0.0, 0.0,
+               0.0, 1.0, 0.0,
+               0.0, 0.0, 1.0,
+       };
 
        int64_t pts_origin;
        int64_t last_pts;
@@ -86,6 +99,9 @@ private:
 
        std::string pathname;
 
+       bool dragging = false;
+       float last_drag_x, last_drag_y;
+
        void producer_thread_func();
        bool play_video(const std::string &pathname);
        void internal_rewind();
@@ -95,6 +111,8 @@ private:
        Frame make_video_frame(const AVFrame *frame);
        bool process_queued_commands(AVFormatContext *format_ctx, AVCodecContext *video_codec_ctx, int video_stream_index, bool *seeked);
        void store_pts(int64_t pts);
+
+       void fixup_zoom_matrix();
 };
 
 #endif  // !defined(_VIDEO_WIDGET_H)