summaryrefslogtreecommitdiffstats
path: root/src/multimedia/video/qvideosurfaces_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/multimedia/video/qvideosurfaces_p.h')
-rw-r--r--src/multimedia/video/qvideosurfaces_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/multimedia/video/qvideosurfaces_p.h b/src/multimedia/video/qvideosurfaces_p.h
index 67831e74e..9074ba458 100644
--- a/src/multimedia/video/qvideosurfaces_p.h
+++ b/src/multimedia/video/qvideosurfaces_p.h
@@ -52,14 +52,14 @@
//
#include <QAbstractVideoSurface>
-#include <QVector>
+#include <QList>
QT_BEGIN_NAMESPACE
class QVideoSurfaces : public QAbstractVideoSurface
{
public:
- QVideoSurfaces(const QVector<QAbstractVideoSurface *> &surfaces, QObject *parent = nullptr);
+ QVideoSurfaces(const QList<QAbstractVideoSurface *> &surfaces, QObject *parent = nullptr);
~QVideoSurfaces();
QList<QVideoFrame::PixelFormat> supportedPixelFormats(QAbstractVideoBuffer::HandleType type) const override;
@@ -68,7 +68,7 @@ public:
bool present(const QVideoFrame &frame) override;
private:
- QVector<QAbstractVideoSurface *> m_surfaces;
+ QList<QAbstractVideoSurface *> m_surfaces;
Q_DISABLE_COPY(QVideoSurfaces)
};