author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 19 Feb 2010 23:40:16 +0200 | |
branch | RCL_3 |
changeset 4 | 3b1da2848fc7 |
parent 3 | 41300fa6a67c |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the QtMultimedia module of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
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 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
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 |
||
52 |
QT_BEGIN_HEADER |
|
53 |
||
54 |
QT_BEGIN_NAMESPACE |
|
55 |
||
56 |
QT_MODULE(Multimedia) |
|
57 |
||
58 |
class QDebug; |
|
59 |
||
60 |
class QVideoSurfaceFormatPrivate; |
|
61 |
||
62 |
class Q_MULTIMEDIA_EXPORT QVideoSurfaceFormat |
|
63 |
{ |
|
64 |
public: |
|
65 |
enum Direction |
|
66 |
{ |
|
67 |
TopToBottom, |
|
68 |
BottomToTop |
|
69 |
}; |
|
70 |
||
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
71 |
enum YCbCrColorSpace |
0 | 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; |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
103 |
void setFrameSize(const QSize &size); |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
104 |
void setFrameSize(int width, int height); |
0 | 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 |
||
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
122 |
YCbCrColorSpace yCbCrColorSpace() const; |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
123 |
void setYCbCrColorSpace(YCbCrColorSpace colorSpace); |
0 | 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 |
||
131 |
private: |
|
132 |
QSharedDataPointer<QVideoSurfaceFormatPrivate> d; |
|
133 |
}; |
|
134 |
||
135 |
#ifndef QT_NO_DEBUG_STREAM |
|
136 |
Q_MULTIMEDIA_EXPORT QDebug operator<<(QDebug, const QVideoSurfaceFormat &); |
|
137 |
#endif |
|
138 |
||
139 |
QT_END_NAMESPACE |
|
140 |
||
141 |
Q_DECLARE_METATYPE(QVideoSurfaceFormat::Direction) |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
142 |
Q_DECLARE_METATYPE(QVideoSurfaceFormat::YCbCrColorSpace) |
0 | 143 |
|
144 |
QT_END_HEADER |
|
145 |
||
146 |
#endif |
|
147 |