diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-06-02 00:24:26 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-06-08 22:32:07 +0200 |
commit | b518f6902e909b22e1623f96249a3ab1424ced59 (patch) | |
tree | 97fe4bdf0f2ffb1e35904c1d2111c6e566984d7c /src/timeline/InputBar.h | |
parent | Select Qt6 in cmake (diff) | |
download | nheko-b518f6902e909b22e1623f96249a3ab1424ced59.tar.xz |
Make Nheko compile on Qt6
Diffstat (limited to 'src/timeline/InputBar.h')
-rw-r--r-- | src/timeline/InputBar.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/timeline/InputBar.h b/src/timeline/InputBar.h index 1f1d6fe1..f03e6019 100644 --- a/src/timeline/InputBar.h +++ b/src/timeline/InputBar.h @@ -4,7 +4,6 @@ #pragma once -#include <QAbstractVideoSurface> #include <QIODevice> #include <QImage> #include <QObject> @@ -41,25 +40,6 @@ enum class MarkdownOverride CMARK, }; -class InputVideoSurface final : public QAbstractVideoSurface -{ - Q_OBJECT - -public: - InputVideoSurface(QObject *parent) - : QAbstractVideoSurface(parent) - { - } - - bool present(const QVideoFrame &frame) override; - - QList<QVideoFrame::PixelFormat> - supportedPixelFormats(QAbstractVideoBuffer::HandleType type) const override; - -signals: - void newImage(QImage img); -}; - class MediaUpload final : public QObject { Q_OBJECT |