forked from wang-bin/QtAV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Frame.cpp
208 lines (175 loc) · 4.96 KB
/
Frame.cpp
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
/******************************************************************************
QtAV: Media play library based on Qt and FFmpeg
Copyright (C) 2012-2015 Wang Bin <[email protected]>
* This file is part of QtAV
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
#include "QtAV/Frame.h"
#include "QtAV/private/Frame_p.h"
#include "utils/Logger.h"
namespace QtAV {
Frame::Frame(const Frame &other)
:d_ptr(other.d_ptr)
{
}
Frame::Frame(FramePrivate *d):
d_ptr(d)
{
}
Frame::~Frame()
{
}
Frame &Frame::operator =(const Frame &other)
{
d_ptr = other.d_ptr;
return *this;
}
int Frame::bytesPerLine(int plane) const
{
if (plane < 0 || plane >= planeCount()) {
qWarning("Invalid plane! Valid range is [0, %d)", planeCount());
return 0;
}
return d_func()->line_sizes[plane];
}
QByteArray Frame::frameData() const
{
return d_func()->data;
}
QByteArray Frame::data(int plane) const
{
if (plane < 0 || plane >= planeCount()) {
qWarning("Invalid plane! Valid range is [0, %d)", planeCount());
return QByteArray();
}
return QByteArray((char*)d_func()->planes[plane], bytesPerLine(plane));
}
uchar* Frame::bits(int plane)
{
if (plane < 0 || plane >= planeCount()) {
qWarning("Invalid plane! Valid range is [0, %d)", planeCount());
return 0;
}
return d_func()->planes[plane];
}
const uchar* Frame::constBits(int plane) const
{
if (plane < 0 || plane >= planeCount()) {
qWarning("Invalid plane! Valid range is [0, %d)", planeCount());
return 0;
}
return d_func()->planes[plane];
}
void Frame::setBits(uchar *b, int plane)
{
if (plane < 0 || plane >= planeCount()) {
qWarning("Invalid plane! Valid range is [0, %d)", planeCount());
return;
}
Q_D(Frame);
d->planes[plane] = b;
}
void Frame::setBits(const QVector<uchar *> &b)
{
Q_D(Frame);
const int nb_planes = planeCount();
d->planes = b;
if (d->planes.size() > nb_planes) {
d->planes.reserve(nb_planes);
d->planes.resize(nb_planes);
}
}
void Frame::setBits(quint8 *slice[])
{
for (int i = 0; i < planeCount(); ++i ) {
setBits(slice[i], i);
}
}
void Frame::setBytesPerLine(int lineSize, int plane)
{
if (plane < 0 || plane >= planeCount()) {
qWarning("Invalid plane! Valid range is [0, %d)", planeCount());
return;
}
Q_D(Frame);
d->line_sizes[plane] = lineSize;
}
void Frame::setBytesPerLine(const QVector<int> &lineSize)
{
Q_D(Frame);
const int nb_planes = planeCount();
d->line_sizes = lineSize;
if (d->line_sizes.size() > nb_planes) {
d->line_sizes.reserve(nb_planes);
d->line_sizes.resize(nb_planes);
}
}
void Frame::setBytesPerLine(int stride[])
{
for (int i = 0; i < planeCount(); ++i ) {
setBytesPerLine(stride[i], i);
}
}
int Frame::planeCount() const
{
Q_D(const Frame);
return d->planes.size();
}
int Frame::channelCount() const
{
return planeCount();
}
/*!
Returns any extra metadata associated with this frame.
*/
QVariantMap Frame::availableMetaData() const
{
Q_D(const Frame);
return d->metadata;
}
/*!
Returns any metadata for this frame for the given \a key.
This might include frame specific information from
a camera, or subtitles from a decoded video stream.
See the documentation for the relevant video frame
producer for further information about available metadata.
*/
QVariant Frame::metaData(const QString &key) const
{
Q_D(const Frame);
return d->metadata.value(key);
}
/*!
Sets the metadata for the given \a key to \a value.
If \a value is a null variant, any metadata for this key will be removed->
The producer of the video frame might use this to associate
certain data with this frame, or for an intermediate processor
to add information for a consumer of this frame.
*/
void Frame::setMetaData(const QString &key, const QVariant &value)
{
Q_D(Frame);
if (!value.isNull())
d->metadata.insert(key, value);
else
d->metadata.remove(key);
}
qreal Frame::timestamp() const
{
return d_func()->timestamp;
}
void Frame::setTimestamp(qreal ts)
{
d_func()->timestamp = ts;
}
} //namespace QtAV