forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrame.cpp
340 lines (259 loc) · 10.4 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
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
#include <catch2/catch.hpp>
#include <vector>
#include "frame.h"
#ifdef _MSC_VER
# pragma warning (disable : 4702) // Disable warning: unreachable code
#endif
using namespace std;
namespace {
vector<uint8_t> rgb24_raw_data;
vector<uint8_t> i420_raw_data;
vector<uint8_t> nv12_raw_data;
constexpr av::PixelFormat rgb24_pixfmt{AV_PIX_FMT_RGB24};
constexpr av::PixelFormat i420_pixfmt{AV_PIX_FMT_YUV420P};
constexpr av::PixelFormat nv12_pixfmt{AV_PIX_FMT_NV12};
constexpr int width = 640;
constexpr int height = 480;
constexpr int alignment = 1;
}
TEST_CASE("Core functionality", "[Frame]")
{
SECTION("setPts/Dts") {
{
av::VideoFrame frame;
frame.setPts({1000, {10000, 1}});
CHECK(frame.raw()->pts == 1000);
CHECK(frame.timeBase() == av::Rational{10000, 1});
}
{
av::VideoFrame frame;
frame.setPts({1000, {10000, 1}});
CHECK(frame.raw()->pts == 1000);
CHECK(frame.timeBase() == av::Rational{10000, 1});
frame.setTimeBase({1000, 1});
CHECK(frame.raw()->pts == 10000);
CHECK(frame.timeBase() == av::Rational{1000, 1});
}
}
SECTION("Timebase Copy/Clone") {
const av::Rational tb{1000,1};
av::VideoFrame in_frame{AV_PIX_FMT_RGB24, 1920, 1080};
CHECK(in_frame.timeBase() == av::Rational());
in_frame.setTimeBase(tb);
CHECK(in_frame.timeBase() == tb);
// copy ctor
{
auto frame = in_frame;
CHECK(frame.timeBase() == tb);
}
// move ctor
{
auto tmp = in_frame;
CHECK(tmp.timeBase() == tb);
auto frame = std::move(tmp);
CHECK(frame.timeBase() == tb);
}
// copy operator
{
av::VideoFrame frame;
frame = in_frame;
CHECK(frame.timeBase() == tb);
}
// move operator
{
auto tmp = in_frame;
CHECK(tmp.timeBase() == tb);
av::VideoFrame frame;
frame = std::move(tmp);
CHECK(frame.timeBase() == tb);
}
// clone
{
auto frame = in_frame.clone();
CHECK(frame.timeBase() == tb);
}
}
}
TEST_CASE("Copy from raw data storage", "[VideoFrame][VideoFrameContruct]")
{
SECTION("Packed RGB24 :: 1 plane") {
// Prepare image
auto &raw_data = rgb24_raw_data;
auto pixfmt = rgb24_pixfmt;
raw_data.resize(av_image_get_buffer_size(pixfmt, width, height, alignment));
for (size_t i = 0; i < raw_data.size(); ++i) {
rgb24_raw_data[i] = (i%3)+1;
}
av::VideoFrame frame;
//REQUIRE_NOTHROW([&frame]() mutable {
// frame = av::VideoFrame{rgb24_raw_data.data(), rgb24_raw_data.size(), rgb24_pixfmt, width, height, alignment};
//});
frame = av::VideoFrame{raw_data.data(), raw_data.size(), pixfmt, width, height, alignment};
CHECK(frame.raw());
CHECK(frame.raw()->data[0] == frame.data(0));
CHECK(frame.raw()->data[1] == frame.data(1));
CHECK(frame.raw()->data[2] == frame.data(2));
CHECK(frame.raw()->data[3] == frame.data(3));
CHECK(frame.data(0));
CHECK(frame.data(1) == nullptr);
CHECK(frame.data(0)[0] == 1);
CHECK(frame.data(0)[1] == 2);
CHECK(frame.data(0)[2] == 3);
// Frame can use internal alignments and paddings
CHECK(frame.size() >= raw_data.size());
// Buffer size get actual bytes count to hold image relative needed alignment
CHECK(frame.bufferSize(alignment) == raw_data.size());
vector<uint8_t> out;
error_code ec;
auto status = frame.copyToBuffer(out, alignment, ec);
CHECK(!status == !!ec); // status must be correspond to error holding
CHECK(status);
CHECK(!ec);
REQUIRE(equal(raw_data.begin(), raw_data.end(), out.begin()));
//frame.dump();
std::cout << frame.raw()->linesize[0]
<< ", " << frame.raw()->linesize[1]
<< ", " << frame.raw()->linesize[2]
<< endl;
// Cases below can fail and can pass on different platforms:
//REQUIRE(std::equal(begin(i420_raw_data), end(i420_raw_data), frame.raw()->data[0]));
}
SECTION("Planar I420 :: 3 planes") {
// Prepare image
auto &raw_data = i420_raw_data;
auto pixfmt = i420_pixfmt;
raw_data.resize(av_image_get_buffer_size(pixfmt, width, height, alignment));
const uint8_t * const plane_y = raw_data.data();
const uint8_t * const plane_u = plane_y + height*width;
const uint8_t * const plane_v = plane_u + height*width/4;
const uint8_t * const plane_end = plane_v + height*width/4;
auto ptr = raw_data.data();
// Y plane
for (size_t i = 0; i < width*height; ++i) {
*ptr++ = 1;
}
// U plane
for (size_t i = 0; i < width*height/4; ++i) {
*ptr++ = 2;
}
// V plane
for (size_t i = 0; i < width*height/4; ++i) {
*ptr++ = 3;
}
CHECK(plane_end == ptr);
CHECK(plane_end == raw_data.data() + raw_data.size());
CHECK(ptr - 1 == &raw_data.back());
av::VideoFrame frame;
//REQUIRE_NOTHROW([&frame]() mutable {
// frame = av::VideoFrame{rgb24_raw_data.data(), rgb24_raw_data.size(), rgb24_pixfmt, width, height, alignment};
//});
frame = av::VideoFrame{raw_data.data(), raw_data.size(), pixfmt, width, height, alignment};
CHECK(frame.raw());
CHECK(frame.raw()->data[0] == frame.data(0));
CHECK(frame.raw()->data[1] == frame.data(1));
CHECK(frame.raw()->data[2] == frame.data(2));
CHECK(frame.raw()->data[3] == frame.data(3));
CHECK(frame.data(0));
CHECK(frame.data(1));
CHECK(frame.data(2));
CHECK(frame.data(3) == nullptr);
CHECK(*frame.data(0) == 1);
CHECK(*frame.data(1) == 2);
CHECK(*frame.data(2) == 3);
// Frame can use internal alignments and paddings
CHECK(frame.size() >= raw_data.size());
// Buffer size get actual bytes count to hold image relative needed alignment
CHECK(frame.bufferSize(alignment) == raw_data.size());
vector<uint8_t> out;
error_code ec;
auto status = frame.copyToBuffer(out, alignment, ec);
CHECK(!status == !!ec); // status must be correspond to error holding
CHECK(status);
CHECK(!ec);
REQUIRE(equal(raw_data.begin(), raw_data.end(), out.begin()));
//frame.dump();
std::cout << frame.raw()->linesize[0]
<< ", " << frame.raw()->linesize[1]
<< ", " << frame.raw()->linesize[2]
<< endl;
// Cases below can fail and can pass on different platforms:
//CHECK(frame.raw()->data[1] - frame.raw()->data[0] == width*height);
//REQUIRE(std::equal(begin(i420_raw_data), end(i420_raw_data), frame.raw()->data[0]));
}
SECTION("Semi-Planar NV12 :: 2 planes") {
// Prepare image
auto &raw_data = nv12_raw_data;
auto pixfmt = nv12_pixfmt;
raw_data.resize(av_image_get_buffer_size(pixfmt, width, height, alignment));
const uint8_t * const plane_y = raw_data.data();
const uint8_t * const plane_uv = plane_y + height*width;
const uint8_t * const plane_end = plane_uv + height*width/2;
auto ptr = raw_data.data();
// Y plane
for (size_t i = 0; i < width*height; ++i) {
*ptr++ = 1;
}
// UV plane, yes, we divide on 4 to fill two bytes at once
for (size_t i = 0; i < width*height/4; ++i) {
*ptr++ = 2;
*ptr++ = 3;
}
CHECK(plane_end == ptr);
CHECK(plane_end == raw_data.data() + raw_data.size());
CHECK(ptr - 1 == &raw_data.back());
av::VideoFrame frame;
//REQUIRE_NOTHROW([&frame]() mutable {
// frame = av::VideoFrame{rgb24_raw_data.data(), rgb24_raw_data.size(), rgb24_pixfmt, width, height, alignment};
//});
frame = av::VideoFrame{raw_data.data(), raw_data.size(), pixfmt, width, height, alignment};
CHECK(frame.raw());
CHECK(frame.raw()->data[0] == frame.data(0));
CHECK(frame.raw()->data[1] == frame.data(1));
CHECK(frame.raw()->data[2] == frame.data(2));
CHECK(frame.raw()->data[3] == frame.data(3));
CHECK(frame.data(0));
CHECK(frame.data(1));
CHECK(frame.data(2) == nullptr);
CHECK(*frame.data(0) == 1);
CHECK(*(frame.data(1) + 0) == 2);
CHECK(*(frame.data(1) + 1) == 3);
// Frame can use internal alignments and paddings
CHECK(frame.size() >= raw_data.size());
// Buffer size get actual bytes count to hold image relative needed alignment
CHECK(frame.bufferSize(alignment) == raw_data.size());
vector<uint8_t> out;
error_code ec;
auto status = frame.copyToBuffer(out, alignment, ec);
CHECK(!status == !!ec); // status must be correspond to error holding
CHECK(status);
CHECK(!ec);
REQUIRE(equal(raw_data.begin(), raw_data.end(), out.begin()));
//frame.dump();
std::cout << frame.raw()->linesize[0]
<< ", " << frame.raw()->linesize[1]
<< ", " << frame.raw()->linesize[2]
<< endl;
// Cases below can fail and can pass on different platforms:
//CHECK(frame.raw()->data[1] - frame.raw()->data[0] == width*height);
//REQUIRE(std::equal(begin(i420_raw_data), end(i420_raw_data), frame.raw()->data[0]));
}
SECTION("AVFrame :: Copy/Destroy") {
using namespace av;
VideoFrame frame{PixelFormat(AV_PIX_FMT_RGB24), 1920, 1080};
auto raw = frame.raw();
CHECK(raw->buf[0]);
CHECK(raw->data[0]);
CHECK(raw->buf[0]->data == raw->data[0]);
auto buf_ref = raw->buf[0];
CHECK(buf_ref->size >= 1920*1080*3);
CHECK(av_buffer_get_ref_count(buf_ref) == 1);
// store
auto buf_ref_copy = *buf_ref;
{
auto clone = frame;
CHECK(av_buffer_get_ref_count(&buf_ref_copy) == 2);
}
// Scope exit, clone must reset
CHECK(av_buffer_get_ref_count(&buf_ref_copy) == 1);
}
}