/* Copyright (c) 2014-2016, 2019 Stanislaw Halik * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. */ #pragma once #include "compat/math.hpp" #include "export.hpp" #include #include #include #include #include #include #include struct OTR_VIDEO_EXPORT video_widget : QWidget { video_widget(QWidget* parent = nullptr); void update_image(const QImage& image); std::tuple preview_size() const; void resizeEvent(QResizeEvent*) override; void paintEvent(QPaintEvent*) override; void draw_image(); bool fresh() const; protected: mutable QMutex mtx { QMutex::NonRecursive }; QImage texture; std::vector vec; void set_fresh(bool x); void set_image(const unsigned char* src, int width, int height, int stride, QImage::Format fmt); private: void init_image_nolock(); QTimer timer; std::atomic size_ = QSize(320, 240); std::atomic fresh_ { false }; static_assert(decltype(fresh_)::is_always_lock_free); };