123456789101112131415161718192021222324252627 |
- #ifndef VIDEOSURFACE_H
- #define VIDEOSURFACE_H
- #include <QAbstractVideoSurface>
- #include <QVideoSurfaceFormat>
- #include "qdll_global.h"
- class FrameObserver;
- class QDLLSHARED_EXPORT VideoSurface : public QAbstractVideoSurface
- {
- Q_OBJECT
- public:
- explicit VideoSurface(FrameObserver *frameObserver, QObject *parent = 0);
- virtual ~VideoSurface();
- virtual QList<QVideoFrame::PixelFormat> supportedPixelFormats(QAbstractVideoBuffer::HandleType handleType = QAbstractVideoBuffer::NoHandle) const;
- virtual bool present(const QVideoFrame &frame);
- virtual bool start(const QVideoSurfaceFormat &format);
- protected:
- FrameObserver *m_frameObserver; // Not owned
- };
- #endif // VIDEOSURFACE_H
|