source: trunk/src/multimedia/video/qvideosurfaceformat.h@ 971

Last change on this file since 971 was 846, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

  • Property svn:eol-style set to native
File size: 4.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtMultimedia module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef QVIDEOSURFACEFORMAT_H
43#define QVIDEOSURFACEFORMAT_H
44
45#include <QtCore/qlist.h>
46#include <QtCore/qpair.h>
47#include <QtCore/qshareddata.h>
48#include <QtCore/qsize.h>
49#include <QtGui/qimage.h>
50#include <QtMultimedia/qvideoframe.h>
51
52QT_BEGIN_HEADER
53
54QT_BEGIN_NAMESPACE
55
56QT_MODULE(Multimedia)
57
58class QDebug;
59
60class QVideoSurfaceFormatPrivate;
61
62class Q_MULTIMEDIA_EXPORT QVideoSurfaceFormat
63{
64public:
65 enum Direction
66 {
67 TopToBottom,
68 BottomToTop
69 };
70
71 enum YCbCrColorSpace
72 {
73 YCbCr_Undefined,
74 YCbCr_BT601,
75 YCbCr_BT709,
76 YCbCr_xvYCC601,
77 YCbCr_xvYCC709,
78 YCbCr_JPEG,
79#ifndef qdoc
80 YCbCr_CustomMatrix
81#endif
82 };
83
84 QVideoSurfaceFormat();
85 QVideoSurfaceFormat(
86 const QSize &size,
87 QVideoFrame::PixelFormat pixelFormat,
88 QAbstractVideoBuffer::HandleType handleType = QAbstractVideoBuffer::NoHandle);
89 QVideoSurfaceFormat(const QVideoSurfaceFormat &format);
90 ~QVideoSurfaceFormat();
91
92 QVideoSurfaceFormat &operator =(const QVideoSurfaceFormat &format);
93
94 bool operator ==(const QVideoSurfaceFormat &format) const;
95 bool operator !=(const QVideoSurfaceFormat &format) const;
96
97 bool isValid() const;
98
99 QVideoFrame::PixelFormat pixelFormat() const;
100 QAbstractVideoBuffer::HandleType handleType() const;
101
102 QSize frameSize() const;
103 void setFrameSize(const QSize &size);
104 void setFrameSize(int width, int height);
105
106 int frameWidth() const;
107 int frameHeight() const;
108
109 QRect viewport() const;
110 void setViewport(const QRect &viewport);
111
112 Direction scanLineDirection() const;
113 void setScanLineDirection(Direction direction);
114
115 qreal frameRate() const;
116 void setFrameRate(qreal rate);
117
118 QSize pixelAspectRatio() const;
119 void setPixelAspectRatio(const QSize &ratio);
120 void setPixelAspectRatio(int width, int height);
121
122 YCbCrColorSpace yCbCrColorSpace() const;
123 void setYCbCrColorSpace(YCbCrColorSpace colorSpace);
124
125 QSize sizeHint() const;
126
127 QList<QByteArray> propertyNames() const;
128 QVariant property(const char *name) const;
129 void setProperty(const char *name, const QVariant &value);
130
131private:
132 QSharedDataPointer<QVideoSurfaceFormatPrivate> d;
133};
134
135#ifndef QT_NO_DEBUG_STREAM
136Q_MULTIMEDIA_EXPORT QDebug operator<<(QDebug, const QVideoSurfaceFormat &);
137#endif
138
139QT_END_NAMESPACE
140
141Q_DECLARE_METATYPE(QVideoSurfaceFormat::Direction)
142Q_DECLARE_METATYPE(QVideoSurfaceFormat::YCbCrColorSpace)
143
144QT_END_HEADER
145
146#endif
147
Note: See TracBrowser for help on using the repository browser.