summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2021-01-04 12:31:09 +0100
committerLars Knoll <lars.knoll@qt.io>2021-01-22 06:58:14 +0000
commitcfaa21174e72dc00d073f3d6f6ce7f68330afff9 (patch)
treed925688c02c5e6d9c596ba46be58ff2db6032078 /tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp
parentc355d98b045834a494e9fda634388f82c8f625a9 (diff)
Merge QAbstractPlanarVideoOutput into QAbstractVideoOutput
And while we're at it, sanitize the signature of the virtual map() method. Change-Id: I8feb09e1dd6abdd9f480e202568ff84e6c3c08a9 Reviewed-by: Doris Verria <doris.verria@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp')
-rw-r--r--tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp b/tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp
index aea3e0e61..14f9309db 100644
--- a/tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp
+++ b/tests/auto/unit/qpaintervideosurface/tst_qpaintervideosurface.cpp
@@ -101,7 +101,7 @@ public:
[[nodiscard]] QVariant handle() const override { return m_textureId; }
- uchar *map(MapMode, int *, int *) override { return nullptr; }
+ MapData map(MapMode) override { return {}; }
void unmap() override {}
[[nodiscard]] MapMode mapMode() const override { return NotMapped; }
@@ -118,7 +118,7 @@ public:
: QAbstractVideoBuffer(UserHandle)
{}
- uchar *map(MapMode, int *, int *) override { return nullptr; }
+ MapData map(MapMode) override { return {}; }
void unmap() override {}
[[nodiscard]] MapMode mapMode() const override { return NotMapped; }
};