summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorTarja Sundqvist <tarja.sundqvist@qt.io>2022-04-07 15:22:10 +0300
committerTarja Sundqvist <tarja.sundqvist@qt.io>2022-04-07 15:22:10 +0300
commitdc0ee181d4c56ff66c989bd3292dad7cc35e234b (patch)
treee8934d4e5e93d60ed957afd0d2b1a6d5319c14ed /tests/auto
parentfa6c3d653682f9fd331d859c7196a291a8a4d8d5 (diff)
parent51282e083d7a1c06309cf7f2fc216f6203b4fbb2 (diff)
Merge remote-tracking branch 'origin/tqtc/lts-5.15.4' into tqtc/lts-5.15-opensourcev5.15.4-lts-lgpl
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/unit/qvideoframe/tst_qvideoframe.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp b/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
index 402ddf334..1b597a241 100644
--- a/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
+++ b/tests/auto/unit/qvideoframe/tst_qvideoframe.cpp
@@ -1244,14 +1244,14 @@ void tst_QVideoFrame::image_data()
QTest::newRow("64x64 YUV420P")
<< QSize(64, 64)
<< QVideoFrame::Format_YUV420P
- << 13288
+ << 18432
<< 256
<< QImage::Format_ARGB32;
QTest::newRow("64x64 YV12")
<< QSize(64, 64)
<< QVideoFrame::Format_YV12
- << 16384
+ << 18432
<< 256
<< QImage::Format_ARGB32;
@@ -1272,14 +1272,14 @@ void tst_QVideoFrame::image_data()
QTest::newRow("64x64 NV12")
<< QSize(64, 64)
<< QVideoFrame::Format_NV12
- << 16384
+ << 24576
<< 256
<< QImage::Format_ARGB32;
QTest::newRow("64x64 NV21")
<< QSize(64, 64)
<< QVideoFrame::Format_NV21
- << 16384
+ << 24576
<< 256
<< QImage::Format_ARGB32;
#endif