summaryrefslogtreecommitdiffstats
path: root/src/multimedia/video/qvideo.cpp
blob: 13f524334501f7abc42b7332a5b8aecf1a566b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qvideo.h"

QT_BEGIN_NAMESPACE

/*!
    \enum QVideo::RotationAngle
    \since 6.7

    The angle of the clockwise rotation that should be applied to a video
    frame before displaying.

    \value Rotation0 No rotation required, the frame has correct orientation
    \value Rotation90 The frame should be rotated by 90 degrees
    \value Rotation180 The frame should be rotated by 180 degrees
    \value Rotation270 The frame should be rotated by 270 degrees
*/

QT_END_NAMESPACE

#include "moc_qvideo.cpp"