summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/unit/qvideoframe/tst_qvideoframe.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp b/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
index bb77b7cca..e99c4bf77 100644
--- a/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
+++ b/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
@@ -31,6 +31,7 @@
#include <QtTest/QtTest>
#include <qvideoframe.h>
+#include "private/qmemoryvideobuffer_p.h"
#include <QtGui/QImage>
#include <QtCore/QPointer>
#include <QtMultimedia/private/qtmultimedia-config_p.h>
@@ -89,6 +90,8 @@ private slots:
void image_data();
void image();
+
+ void emptyData();
};
Q_DECLARE_METATYPE(QImage::Format)
@@ -1299,6 +1302,15 @@ void tst_QVideoFrame::image()
QCOMPARE(img.bytesPerLine(), bytesPerLine);
}
+void tst_QVideoFrame::emptyData()
+{
+ QByteArray data(nullptr, 0);
+ QVideoFrame f(new QMemoryVideoBuffer(data, 600),
+ QSize(800, 600),
+ QVideoFrame::Format_ARGB32);
+ QVERIFY(!f.map(QAbstractVideoBuffer::ReadOnly));
+}
+
QTEST_MAIN(tst_QVideoFrame)
#include "tst_qvideoframe.moc"