summaryrefslogtreecommitdiffstats
path: root/src/multimedia/video/qvideosurfaceformat.cpp
blob: 774a72c30322ce015d7befbdf7dfc039b684ce14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qvideosurfaceformat.h"

#include <qdebug.h>
#include <qlist.h>
#include <qmetatype.h>
#include <qpair.h>
#include <qvariant.h>
#include <qmatrix4x4.h>

QT_BEGIN_NAMESPACE

static void initResource() {
    Q_INIT_RESOURCE(qtmultimedia);
}

class QVideoSurfaceFormatPrivate : public QSharedData
{
public:
    QVideoSurfaceFormatPrivate() = default;

    QVideoSurfaceFormatPrivate(
            const QSize &size,
            QVideoSurfaceFormat::PixelFormat format)
        : pixelFormat(format)
        , frameSize(size)
        , viewport(QPoint(0, 0), size)
    {
    }

    bool operator ==(const QVideoSurfaceFormatPrivate &other) const
    {
        if (pixelFormat == other.pixelFormat
            && scanLineDirection == other.scanLineDirection
            && frameSize == other.frameSize
            && viewport == other.viewport
            && frameRatesEqual(frameRate, other.frameRate)
            && ycbcrColorSpace == other.ycbcrColorSpace
            && mirrored == other.mirrored)
            return true;

        return false;
    }

    inline static bool frameRatesEqual(qreal r1, qreal r2)
    {
        return qAbs(r1 - r2) <= 0.00001 * qMin(qAbs(r1), qAbs(r2));
    }

    QVideoSurfaceFormat::PixelFormat pixelFormat = QVideoSurfaceFormat::Format_Invalid;
    QVideoSurfaceFormat::Direction scanLineDirection = QVideoSurfaceFormat::TopToBottom;
    QSize frameSize;
    QVideoSurfaceFormat::YCbCrColorSpace ycbcrColorSpace = QVideoSurfaceFormat::YCbCr_Undefined;
    QRect viewport;
    qreal frameRate = 0.0;
    bool mirrored = false;
};

/*!
    \class QVideoSurfaceFormat
    \brief The QVideoSurfaceFormat class specifies the stream format of a video presentation
    surface.
    \inmodule QtMultimedia

    \ingroup multimedia
    \ingroup multimedia_video

    A video surface presents a stream of video frames.  The surface's format describes the type of
    the frames and determines how they should be presented.

    The core properties of a video stream required to setup a video surface are the pixel format
    given by pixelFormat(), and the frame dimensions given by frameSize().

    If the surface is to present frames using a frame's handle a surface format will also include
    a handle type which is given by the handleType() function.

    The region of a frame that is actually displayed on a video surface is given by the viewport().
    A stream may have a viewport less than the entire region of a frame to allow for videos smaller
    than the nearest optimal size of a video frame.  For example the width of a frame may be
    extended so that the start of each scan line is eight byte aligned.

    Other common properties are the scanLineDirection(), and frameRate().
    Additionally a stream may have some additional type specific properties which are listed by the
    dynamicPropertyNames() function and can be accessed using the property(), and setProperty()
    functions.
*/

/*!
    \enum QVideoSurfaceFormat::Direction

    Enumerates the layout direction of video scan lines.

    \value TopToBottom Scan lines are arranged from the top of the frame to the bottom.
    \value BottomToTop Scan lines are arranged from the bottom of the frame to the top.
*/

/*!
    \enum QVideoSurfaceFormat::YCbCrColorSpace

    Enumerates the Y'CbCr color space of video frames.

    \value YCbCr_Undefined
    No color space is specified.

    \value YCbCr_BT601
    A Y'CbCr color space defined by ITU-R recommendation BT.601
    with Y value range from 16 to 235, and Cb/Cr range from 16 to 240.
    Used in standard definition video.

    \value YCbCr_BT709
    A Y'CbCr color space defined by ITU-R BT.709 with the same values range as YCbCr_BT601.  Used
    for HDTV.

    \value YCbCr_xvYCC601
    The BT.601 color space with the value range extended to 0 to 255.
    It is backward compatibile with BT.601 and uses values outside BT.601 range to represent a
    wider range of colors.

    \value YCbCr_xvYCC709
    The BT.709 color space with the value range extended to 0 to 255.

    \value YCbCr_JPEG
    The full range Y'CbCr color space used in JPEG files.
*/

/*!
    Constructs a null video stream format.
*/
QVideoSurfaceFormat::QVideoSurfaceFormat()
    : d(new QVideoSurfaceFormatPrivate)
{
    initResource();
}

/*!
    Contructs a description of stream which receives stream of \a type buffers with given frame
    \a size and pixel \a format.
*/
QVideoSurfaceFormat::QVideoSurfaceFormat(
        const QSize& size, QVideoSurfaceFormat::PixelFormat format)
    : d(new QVideoSurfaceFormatPrivate(size, format))
{
}

/*!
    Constructs a copy of \a other.
*/
QVideoSurfaceFormat::QVideoSurfaceFormat(const QVideoSurfaceFormat &other) = default;

/*!
    Assigns the values of \a other to this object.
*/
QVideoSurfaceFormat &QVideoSurfaceFormat::operator =(const QVideoSurfaceFormat &other) = default;

/*!
    Destroys a video stream description.
*/
QVideoSurfaceFormat::~QVideoSurfaceFormat() = default;

/*!
    Identifies if a video surface format has a valid pixel format and frame size.

    Returns true if the format is valid, and false otherwise.
*/
bool QVideoSurfaceFormat::isValid() const
{
    return d->pixelFormat != Format_Invalid && d->frameSize.isValid();
}

/*!
    Returns true if \a other is the same as this video format, and false if they are different.
*/
bool QVideoSurfaceFormat::operator ==(const QVideoSurfaceFormat &other) const
{
    return d == other.d || *d == *other.d;
}

/*!
    Returns true if \a other is different to this video format, and false if they are the same.
*/
bool QVideoSurfaceFormat::operator !=(const QVideoSurfaceFormat &other) const
{
    return d != other.d && !(*d == *other.d);
}

/*!
    Returns the pixel format of frames in a video stream.
*/
QVideoSurfaceFormat::PixelFormat QVideoSurfaceFormat::pixelFormat() const
{
    return d->pixelFormat;
}

/*!
    Returns the dimensions of frames in a video stream.

    \sa frameWidth(), frameHeight()
*/
QSize QVideoSurfaceFormat::frameSize() const
{
    return d->frameSize;
}

/*!
    Returns the width of frames in a video stream.

    \sa frameSize(), frameHeight()
*/
int QVideoSurfaceFormat::frameWidth() const
{
    return d->frameSize.width();
}

/*!
    Returns the height of frame in a video stream.
*/
int QVideoSurfaceFormat::frameHeight() const
{
    return d->frameSize.height();
}

int QVideoSurfaceFormat::nPlanes() const
{
    switch (d->pixelFormat) {
    case Format_Invalid:
    case Format_ARGB32:
    case Format_ARGB32_Premultiplied:
    case Format_RGB32:
    case Format_RGB24:
    case Format_RGB565:
    case Format_RGB555:
    case Format_ARGB8565_Premultiplied:
    case Format_BGRA32:
    case Format_BGRA32_Premultiplied:
    case Format_ABGR32:
    case Format_BGR32:
    case Format_BGR24:
    case Format_BGR565:
    case Format_BGR555:
    case Format_BGRA5658_Premultiplied:
    case Format_AYUV444:
    case Format_AYUV444_Premultiplied:
    case Format_YUV444:
    case Format_UYVY:
    case Format_YUYV:
    case Format_Y8:
    case Format_Y16:
    case Format_Jpeg:
        return 1;
    case Format_NV12:
    case Format_NV21:
    case Format_IMC2:
    case Format_IMC4:
    case Format_P010LE:
    case Format_P010BE:
    case Format_P016LE:
    case Format_P016BE:
        return 2;
    case Format_YUV420P:
    case Format_YUV422P:
    case Format_YV12:
    case Format_IMC1:
    case Format_IMC3:
        return 3;
    }
    return 0;
}

/*!
    Sets the size of frames in a video stream to \a size.

    This will reset the viewport() to fill the entire frame.
*/
void QVideoSurfaceFormat::setFrameSize(const QSize &size)
{
    d->frameSize = size;
    d->viewport = QRect(QPoint(0, 0), size);
}

/*!
    \overload

    Sets the \a width and \a height of frames in a video stream.

    This will reset the viewport() to fill the entire frame.
*/
void QVideoSurfaceFormat::setFrameSize(int width, int height)
{
    d->frameSize = QSize(width, height);
    d->viewport = QRect(0, 0, width, height);
}

/*!
    Returns the viewport of a video stream.

    The viewport is the region of a video frame that is actually displayed.

    By default the viewport covers an entire frame.
*/
QRect QVideoSurfaceFormat::viewport() const
{
    return d->viewport;
}

/*!
    Sets the viewport of a video stream to \a viewport.
*/
void QVideoSurfaceFormat::setViewport(const QRect &viewport)
{
    d->viewport = viewport;
}

/*!
    Returns the direction of scan lines.
*/
QVideoSurfaceFormat::Direction QVideoSurfaceFormat::scanLineDirection() const
{
    return d->scanLineDirection;
}

/*!
    Sets the \a direction of scan lines.
*/
void QVideoSurfaceFormat::setScanLineDirection(Direction direction)
{
    d->scanLineDirection = direction;
}

/*!
    Returns the frame rate of a video stream in frames per second.
*/
qreal QVideoSurfaceFormat::frameRate() const
{
    return d->frameRate;
}

/*!
    Sets the frame \a rate of a video stream in frames per second.
*/
void QVideoSurfaceFormat::setFrameRate(qreal rate)
{
    d->frameRate = rate;
}

/*!
    Returns the Y'CbCr color space of a video stream.
*/
QVideoSurfaceFormat::YCbCrColorSpace QVideoSurfaceFormat::yCbCrColorSpace() const
{
    return d->ycbcrColorSpace;
}

/*!
    Sets the Y'CbCr color \a space of a video stream.
    It is only used with raw YUV frame types.
*/
void QVideoSurfaceFormat::setYCbCrColorSpace(QVideoSurfaceFormat::YCbCrColorSpace space)
{
    d->ycbcrColorSpace = space;
}

/*!
    Returns \c true if the surface is mirrored around its vertical axis.
    This is typically needed for video frames coming from a front camera of a mobile device.

    \note The mirroring here differs from QImage::mirrored, as a vertically mirrored QImage
    will be mirrored around its x-axis.

    \since 5.11
 */
bool QVideoSurfaceFormat::isMirrored() const
{
    return d->mirrored;
}

/*!
    Sets if the surface is \a mirrored around its vertical axis.
    This is typically needed for video frames coming from a front camera of a mobile device.
    Default value is false.

    \note The mirroring here differs from QImage::mirrored, as a vertically mirrored QImage
    will be mirrored around its x-axis.

    \since 5.11
 */
void QVideoSurfaceFormat::setMirrored(bool mirrored)
{
    d->mirrored = mirrored;
}

/*!
    Returns a suggested size in pixels for the video stream.

    This is the same as the size of the viewport.
*/
QSize QVideoSurfaceFormat::sizeHint() const
{
    return d->viewport.size();
}

QString QVideoSurfaceFormat::vertexShaderFileName() const
{
    switch (d->pixelFormat) {
    case Format_Invalid:
    case Format_Jpeg:

    case Format_RGB24:
    case Format_RGB565:
    case Format_RGB555:
    case Format_ARGB8565_Premultiplied:
    case Format_BGR24:
    case Format_BGR565:
    case Format_BGR555:
    case Format_BGRA5658_Premultiplied:

    case Format_Y8:
    case Format_Y16:

    case Format_AYUV444:
    case Format_AYUV444_Premultiplied:
    case Format_YUV444:

    case Format_IMC1:
    case Format_IMC2:
    case Format_IMC3:
    case Format_IMC4:
        return QString();
    case Format_ARGB32:
    case Format_ARGB32_Premultiplied:
    case Format_RGB32:
    case Format_BGRA32:
    case Format_BGRA32_Premultiplied:
    case Format_ABGR32:
    case Format_BGR32:
        return QStringLiteral(":/qtmultimedia/shaders/rgba.vert.qsb");
    case Format_YUV420P:
    case Format_YUV422P:
    case Format_YV12:
    case Format_UYVY:
    case Format_YUYV:
    case Format_NV12:
    case Format_NV21:
    case Format_P010LE:
    case Format_P010BE:
    case Format_P016LE:
    case Format_P016BE:
        return QStringLiteral(":/qtmultimedia/shaders/yuv.vert.qsb");
    }
}

QString QVideoSurfaceFormat::pixelShaderFileName() const
{
    switch (d->pixelFormat) {
    case Format_Invalid:
    case Format_Jpeg:

    case Format_RGB24:
    case Format_RGB565:
    case Format_RGB555:
    case Format_ARGB8565_Premultiplied:
    case Format_BGR24:
    case Format_BGR565:
    case Format_BGR555:
    case Format_BGRA5658_Premultiplied:

    case Format_Y8:
    case Format_Y16:

    case Format_AYUV444:
    case Format_AYUV444_Premultiplied:
    case Format_YUV444:

    case Format_IMC1:
    case Format_IMC2:
    case Format_IMC3:
    case Format_IMC4:
        return QString();
    case Format_ARGB32:
    case Format_ARGB32_Premultiplied:
    case Format_RGB32:
    case Format_BGRA32:
    case Format_BGRA32_Premultiplied:
    case Format_ABGR32:
    case Format_BGR32:
        return QStringLiteral(":/qtmultimedia/shaders/rgba.frag.qsb");
    case Format_YUV420P:
    case Format_YUV422P:
    case Format_YV12:
        return QStringLiteral(":/qtmultimedia/shaders/yuv_yv.frag.qsb");
    case Format_UYVY:
        return QStringLiteral(":/qtmultimedia/shaders/uyvy.frag.qsb");
    case Format_YUYV:
        return QStringLiteral(":/qtmultimedia/shaders/yuyv.frag.qsb");
    case Format_NV12:
        return QStringLiteral(":/qtmultimedia/shaders/nv12.frag.qsb");
    case Format_NV21:
        return QStringLiteral(":/qtmultimedia/shaders/nv21.frag.qsb");
    case Format_P010LE:
    case Format_P016LE:
        return QStringLiteral(":/qtmultimedia/shaders/p010le.frag.qsb");
    case Format_P010BE:
    case Format_P016BE:
        return QStringLiteral(":/qtmultimedia/shaders/p010be.frag.qsb");
    }
}

static QMatrix4x4 colorMatrix(QVideoSurfaceFormat::YCbCrColorSpace colorSpace)
{
    switch (colorSpace) {
    case QVideoSurfaceFormat::YCbCr_JPEG:
        return QMatrix4x4(
            1.0f,  0.000f,  1.402f, -0.701f,
            1.0f, -0.344f, -0.714f,  0.529f,
            1.0f,  1.772f,  0.000f, -0.886f,
            0.0f,  0.000f,  0.000f,  1.0000f);
    case QVideoSurfaceFormat::YCbCr_BT709:
    case QVideoSurfaceFormat::YCbCr_xvYCC709:
        return QMatrix4x4(
            1.164f,  0.000f,  1.793f, -0.5727f,
            1.164f, -0.534f, -0.213f,  0.3007f,
            1.164f,  2.115f,  0.000f, -1.1302f,
            0.0f,    0.000f,  0.000f,  1.0000f);
    default: //BT 601:
        return QMatrix4x4(
            1.164f,  0.000f,  1.596f, -0.8708f,
            1.164f, -0.392f, -0.813f,  0.5296f,
            1.164f,  2.017f,  0.000f, -1.081f,
            0.0f,    0.000f,  0.000f,  1.0000f);
    }
}

QByteArray QVideoSurfaceFormat::uniformData(const QMatrix4x4 &transform, float opacity) const
{
    static constexpr float pw[3] = {};
    const float *planeWidth = pw;

    switch (d->pixelFormat) {
    case Format_Invalid:
    case Format_Jpeg:

    case Format_RGB24:
    case Format_RGB565:
    case Format_RGB555:
    case Format_ARGB8565_Premultiplied:
    case Format_BGR24:
    case Format_BGR565:
    case Format_BGR555:
    case Format_BGRA5658_Premultiplied:

    case Format_Y8:
    case Format_Y16:

    case Format_AYUV444:
    case Format_AYUV444_Premultiplied:
    case Format_YUV444:

    case Format_IMC1:
    case Format_IMC2:
    case Format_IMC3:
    case Format_IMC4:
        return QByteArray();
    case Format_ARGB32:
    case Format_ARGB32_Premultiplied:
    case Format_RGB32:
    case Format_BGRA32:
    case Format_BGRA32_Premultiplied:
    case Format_ABGR32:
    case Format_BGR32: {
        // { matrix4x4, opacity }
        QByteArray buf(16*4 + 4, Qt::Uninitialized);
        char *data = buf.data();
        memcpy(data, transform.constData(), 64);
        memcpy(data + 64, colorMatrix(d->ycbcrColorSpace).constData(), 64);
        memcpy(data + 64 + 64, &opacity, 4);
        memcpy(data + 64 + 64, &opacity, 4);
        memcpy(data + 64 + 64, &opacity, 4);
        memcpy(data + 64 + 64, &opacity, 4);
        return buf;
    }
    case Format_YUV420P:
    case Format_YUV422P:
    case Format_YV12: {
        static constexpr float pw[] = { 1, 1, 0 };
        planeWidth = pw;
        break;
    }
    case Format_UYVY:
    case Format_YUYV: {
        static constexpr float pw[] = { 1, 1, 0 };
        planeWidth = pw;
        break;
    }
    case Format_NV12:
    case Format_NV21:
    case Format_P010LE:
    case Format_P010BE:
    case Format_P016LE:
    case Format_P016BE: {
        static constexpr float pw[] = { 1, 1, 0 };
        planeWidth = pw;
        break;
    }
    }
    // { matrix4x4, colorMatrix, opacity, planeWidth[3] }
    QByteArray buf(64*2 + 4 + 3*4, Qt::Uninitialized);
    char *data = buf.data();
    memcpy(data, transform.constData(), 64);
    memcpy(data + 64, &opacity, 4);
    memcpy(data + 64 + 4, planeWidth, 3*4);
    return buf;
}


/*!
    Returns a video pixel format equivalent to an image \a format.  If there is no equivalent
    format QVideoFrame::InvalidType is returned instead.

    \note In general \l QImage does not handle YUV formats.

*/
QVideoSurfaceFormat::PixelFormat QVideoSurfaceFormat::pixelFormatFromImageFormat(QImage::Format format)
{
    switch (format) {
    case QImage::Format_RGB32:
    case QImage::Format_RGBX8888:
        return QVideoSurfaceFormat::Format_RGB32;
    case QImage::Format_ARGB32:
    case QImage::Format_RGBA8888:
        return QVideoSurfaceFormat::Format_ARGB32;
    case QImage::Format_ARGB32_Premultiplied:
    case QImage::Format_RGBA8888_Premultiplied:
        return QVideoSurfaceFormat::Format_ARGB32_Premultiplied;
    case QImage::Format_RGB16:
        return QVideoSurfaceFormat::Format_RGB565;
    case QImage::Format_ARGB8565_Premultiplied:
        return QVideoSurfaceFormat::Format_ARGB8565_Premultiplied;
    case QImage::Format_RGB555:
        return QVideoSurfaceFormat::Format_RGB555;
    case QImage::Format_RGB888:
        return QVideoSurfaceFormat::Format_RGB24;
    case QImage::Format_Grayscale8:
        return QVideoSurfaceFormat::Format_Y8;
    case QImage::Format_Grayscale16:
        return QVideoSurfaceFormat::Format_Y16;
    default:
        return QVideoSurfaceFormat::Format_Invalid;
    }
}

/*!
    Returns an image format equivalent to a video frame pixel \a format.  If there is no equivalent
    format QImage::Format_Invalid is returned instead.

    \note In general \l QImage does not handle YUV formats.

*/
QImage::Format QVideoSurfaceFormat::imageFormatFromPixelFormat(QVideoSurfaceFormat::PixelFormat format)
{
    switch (format) {
    case QVideoSurfaceFormat::Format_ARGB32:
        return QImage::Format_ARGB32;
    case QVideoSurfaceFormat::Format_ARGB32_Premultiplied:
        return QImage::Format_ARGB32_Premultiplied;
    case QVideoSurfaceFormat::Format_RGB32:
        return QImage::Format_RGB32;
    case QVideoSurfaceFormat::Format_RGB24:
        return QImage::Format_RGB888;
    case QVideoSurfaceFormat::Format_RGB565:
        return QImage::Format_RGB16;
    case QVideoSurfaceFormat::Format_RGB555:
        return QImage::Format_RGB555;
    case QVideoSurfaceFormat::Format_ARGB8565_Premultiplied:
        return QImage::Format_ARGB8565_Premultiplied;
    case QVideoSurfaceFormat::Format_Y8:
        return QImage::Format_Grayscale8;
    case QVideoSurfaceFormat::Format_Y16:
        return QImage::Format_Grayscale16;
    case QVideoSurfaceFormat::Format_ABGR32:
    case QVideoSurfaceFormat::Format_BGRA32:
    case QVideoSurfaceFormat::Format_BGRA32_Premultiplied:
    case QVideoSurfaceFormat::Format_BGR32:
    case QVideoSurfaceFormat::Format_BGR24:
    case QVideoSurfaceFormat::Format_BGR565:
    case QVideoSurfaceFormat::Format_BGR555:
    case QVideoSurfaceFormat::Format_BGRA5658_Premultiplied:
    case QVideoSurfaceFormat::Format_AYUV444:
    case QVideoSurfaceFormat::Format_AYUV444_Premultiplied:
    case QVideoSurfaceFormat::Format_YUV444:
    case QVideoSurfaceFormat::Format_YUV420P:
    case QVideoSurfaceFormat::Format_YUV422P:
    case QVideoSurfaceFormat::Format_YV12:
    case QVideoSurfaceFormat::Format_UYVY:
    case QVideoSurfaceFormat::Format_YUYV:
    case QVideoSurfaceFormat::Format_NV12:
    case QVideoSurfaceFormat::Format_NV21:
    case QVideoSurfaceFormat::Format_IMC1:
    case QVideoSurfaceFormat::Format_IMC2:
    case QVideoSurfaceFormat::Format_IMC3:
    case QVideoSurfaceFormat::Format_IMC4:
    case QVideoSurfaceFormat::Format_P010LE:
    case QVideoSurfaceFormat::Format_P010BE:
    case QVideoSurfaceFormat::Format_P016LE:
    case QVideoSurfaceFormat::Format_P016BE:
    case QVideoSurfaceFormat::Format_Jpeg:
    case QVideoSurfaceFormat::Format_Invalid:
        return QImage::Format_Invalid;
    }
    return QImage::Format_Invalid;
}

#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, QVideoSurfaceFormat::YCbCrColorSpace cs)
{
    QDebugStateSaver saver(dbg);
    dbg.nospace();
    switch (cs) {
        case QVideoSurfaceFormat::YCbCr_BT601:
            dbg << "YCbCr_BT601";
            break;
        case QVideoSurfaceFormat::YCbCr_BT709:
            dbg << "YCbCr_BT709";
            break;
        case QVideoSurfaceFormat::YCbCr_JPEG:
            dbg << "YCbCr_JPEG";
            break;
        case QVideoSurfaceFormat::YCbCr_xvYCC601:
            dbg << "YCbCr_xvYCC601";
            break;
        case QVideoSurfaceFormat::YCbCr_xvYCC709:
            dbg << "YCbCr_xvYCC709";
            break;
        default:
            dbg << "YCbCr_Undefined";
            break;
    }
    return dbg;
}

QDebug operator<<(QDebug dbg, QVideoSurfaceFormat::Direction dir)
{
    QDebugStateSaver saver(dbg);
    dbg.nospace();
    switch (dir) {
        case QVideoSurfaceFormat::BottomToTop:
            dbg << "BottomToTop";
            break;
        case QVideoSurfaceFormat::TopToBottom:
            dbg << "TopToBottom";
            break;
    }
    return dbg;
}

QDebug operator<<(QDebug dbg, const QVideoSurfaceFormat &f)
{
    QDebugStateSaver saver(dbg);
    dbg.nospace();
    dbg << "QVideoSurfaceFormat(" << f.pixelFormat() << ", " << f.frameSize()
        << ", viewport=" << f.viewport()
        <<  ", yCbCrColorSpace=" << f.yCbCrColorSpace()
        << ')'
        << "\n    pixel format=" << f.pixelFormat()
        << "\n    frame size=" << f.frameSize()
        << "\n    viewport=" << f.viewport()
        << "\n    yCbCrColorSpace=" << f.yCbCrColorSpace()
        << "\n    frameRate=" << f.frameRate()
        << "\n    mirrored=" << f.isMirrored();

    return dbg;
}

QDebug operator<<(QDebug dbg, QVideoSurfaceFormat::PixelFormat pf)
{
    QDebugStateSaver saver(dbg);
    dbg.nospace();
    switch (pf) {
    case QVideoSurfaceFormat::Format_Invalid:
        return dbg << "Format_Invalid";
    case QVideoSurfaceFormat::Format_ARGB32:
        return dbg << "Format_ARGB32";
    case QVideoSurfaceFormat::Format_ARGB32_Premultiplied:
        return dbg << "Format_ARGB32_Premultiplied";
    case QVideoSurfaceFormat::Format_RGB32:
        return dbg << "Format_RGB32";
    case QVideoSurfaceFormat::Format_RGB24:
        return dbg << "Format_RGB24";
    case QVideoSurfaceFormat::Format_RGB565:
        return dbg << "Format_RGB565";
    case QVideoSurfaceFormat::Format_RGB555:
        return dbg << "Format_RGB555";
    case QVideoSurfaceFormat::Format_ARGB8565_Premultiplied:
        return dbg << "Format_ARGB8565_Premultiplied";
    case QVideoSurfaceFormat::Format_BGRA32:
        return dbg << "Format_BGRA32";
    case QVideoSurfaceFormat::Format_BGRA32_Premultiplied:
        return dbg << "Format_BGRA32_Premultiplied";
    case QVideoSurfaceFormat::Format_ABGR32:
        return dbg << "Format_ABGR32";
    case QVideoSurfaceFormat::Format_BGR32:
        return dbg << "Format_BGR32";
    case QVideoSurfaceFormat::Format_BGR24:
        return dbg << "Format_BGR24";
    case QVideoSurfaceFormat::Format_BGR565:
        return dbg << "Format_BGR565";
    case QVideoSurfaceFormat::Format_BGR555:
        return dbg << "Format_BGR555";
    case QVideoSurfaceFormat::Format_BGRA5658_Premultiplied:
        return dbg << "Format_BGRA5658_Premultiplied";
    case QVideoSurfaceFormat::Format_AYUV444:
        return dbg << "Format_AYUV444";
    case QVideoSurfaceFormat::Format_AYUV444_Premultiplied:
        return dbg << "Format_AYUV444_Premultiplied";
    case QVideoSurfaceFormat::Format_YUV444:
        return dbg << "Format_YUV444";
    case QVideoSurfaceFormat::Format_YUV420P:
        return dbg << "Format_YUV420P";
    case QVideoSurfaceFormat::Format_YUV422P:
        return dbg << "Format_YUV422P";
    case QVideoSurfaceFormat::Format_YV12:
        return dbg << "Format_YV12";
    case QVideoSurfaceFormat::Format_UYVY:
        return dbg << "Format_UYVY";
    case QVideoSurfaceFormat::Format_YUYV:
        return dbg << "Format_YUYV";
    case QVideoSurfaceFormat::Format_NV12:
        return dbg << "Format_NV12";
    case QVideoSurfaceFormat::Format_NV21:
        return dbg << "Format_NV21";
    case QVideoSurfaceFormat::Format_IMC1:
        return dbg << "Format_IMC1";
    case QVideoSurfaceFormat::Format_IMC2:
        return dbg << "Format_IMC2";
    case QVideoSurfaceFormat::Format_IMC3:
        return dbg << "Format_IMC3";
    case QVideoSurfaceFormat::Format_IMC4:
        return dbg << "Format_IMC4";
    case QVideoSurfaceFormat::Format_Y8:
        return dbg << "Format_Y8";
    case QVideoSurfaceFormat::Format_Y16:
        return dbg << "Format_Y16";
    case QVideoSurfaceFormat::Format_P010LE:
        return dbg << "Format_P010LE";
    case QVideoSurfaceFormat::Format_P010BE:
        return dbg << "Format_P010BE";
    case QVideoSurfaceFormat::Format_P016LE:
        return dbg << "Format_P016LE";
    case QVideoSurfaceFormat::Format_P016BE:
        return dbg << "Format_P016BE";
    case QVideoSurfaceFormat::Format_Jpeg:
        return dbg << "Format_Jpeg";

    default:
        return dbg << QString(QLatin1String("UserType(%1)" )).arg(int(pf)).toLatin1().constData();
    }
}
#endif

QT_END_NAMESPACE