videoencoderav1element.cpp
21.9 KB
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
/* Webcamoid, webcam capture application.
* Copyright (C) 2024 Gonzalo Exequiel Pedone
*
* Webcamoid is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Webcamoid 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Webcamoid. If not, see <http://www.gnu.org/licenses/>.
*
* Web-Site: http://webcamoid.github.io/
*/
#include <QMutex>
#include <QThread>
#include <QVariant>
#include <akfrac.h>
#include <akpacket.h>
#include <akpluginmanager.h>
#include <akvideocaps.h>
#include <akcompressedvideocaps.h>
#include <akvideoconverter.h>
#include <akvideopacket.h>
#include <akcompressedvideopacket.h>
#include <iak/akelement.h>
#include <aom/aomcx.h>
#include <aom/aom_encoder.h>
#include "videoencoderav1element.h"
struct Av1PixFormatTable
{
AkVideoCaps::PixelFormat pixFormat;
aom_img_fmt_t av1Format;
size_t depth;
bool monochrome;
aom_codec_flags_t flags;
unsigned int profile;
static inline const Av1PixFormatTable *table()
{
static const Av1PixFormatTable aomAv1PixFormatTable[] = {
{AkVideoCaps::Format_y8 , AOM_IMG_FMT_I420 , 8 , true , 0 , 0},
{AkVideoCaps::Format_y10 , AOM_IMG_FMT_I42016, 10, true , AOM_CODEC_USE_HIGHBITDEPTH, 0},
{AkVideoCaps::Format_y12 , AOM_IMG_FMT_I42016, 12, true , AOM_CODEC_USE_HIGHBITDEPTH, 0},
{AkVideoCaps::Format_nv12 , AOM_IMG_FMT_NV12 , 8 , false, 0 , 1},
{AkVideoCaps::Format_yvu420p , AOM_IMG_FMT_YV12 , 8 , false, 0 , 1},
{AkVideoCaps::Format_yuv420p , AOM_IMG_FMT_I420 , 8 , false, 0 , 0},
{AkVideoCaps::Format_yuv422p , AOM_IMG_FMT_I422 , 8 , false, 0 , 2},
{AkVideoCaps::Format_yuv444p , AOM_IMG_FMT_I444 , 8 , false, 0 , 1},
{AkVideoCaps::Format_yvu420p10, AOM_IMG_FMT_YV1216, 10, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_yvu420p12, AOM_IMG_FMT_YV1216, 12, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_yuv420p10, AOM_IMG_FMT_I42016, 10, false, AOM_CODEC_USE_HIGHBITDEPTH, 0},
{AkVideoCaps::Format_yuv420p12, AOM_IMG_FMT_I42016, 12, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_yuv422p10, AOM_IMG_FMT_I42216, 10, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_yuv422p12, AOM_IMG_FMT_I42216, 12, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_yuv444p10, AOM_IMG_FMT_I44416, 10, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_yuv444p12, AOM_IMG_FMT_I44416, 12, false, AOM_CODEC_USE_HIGHBITDEPTH, 2},
{AkVideoCaps::Format_none , AOM_IMG_FMT_NONE , 0 , false, 0 , 0},
};
return aomAv1PixFormatTable;
}
static inline const Av1PixFormatTable *byPixFormat(AkVideoCaps::PixelFormat format)
{
auto fmt = table();
for (; fmt->pixFormat != AkVideoCaps::Format_none; fmt++)
if (fmt->pixFormat == format)
return fmt;
return fmt;
}
static inline const Av1PixFormatTable *byAv1Format(aom_img_fmt_t format,
size_t depth,
bool monochrome)
{
auto fmt = table();
for (; fmt->pixFormat != AkVideoCaps::Format_none; fmt++)
if (fmt->av1Format == format
&& fmt->depth == depth
&& fmt->monochrome == monochrome)
return fmt;
return fmt;
}
};
class VideoEncoderAv1ElementPrivate
{
public:
VideoEncoderAv1Element *self;
AkVideoConverter m_videoConverter;
AkCompressedVideoCaps m_outputCaps;
AkPropertyOptions m_options;
QByteArray m_headers;
aom_codec_iface_t *m_interface {nullptr};
aom_codec_ctx m_encoder;
aom_image_t m_frame;
QMutex m_mutex;
qint64 m_id {0};
int m_index {0};
bool m_initialized {false};
bool m_paused {false};
qint64 m_encodedTimePts {0};
AkElementPtr m_fpsControl {akPluginManager->create<AkElement>("VideoFilter/FpsControl")};
explicit VideoEncoderAv1ElementPrivate(VideoEncoderAv1Element *self);
~VideoEncoderAv1ElementPrivate();
bool init();
void uninit();
void updateHeaders();
void updateOutputCaps(const AkVideoCaps &inputCaps);
static void printError(aom_codec_err_t error,
const aom_codec_ctx_t *codecContext=nullptr);
void encodeFrame(const AkVideoPacket &src);
void sendFrame(const aom_codec_cx_pkt_t *aomPacket) const;
unsigned int aomLevel(const AkVideoCaps &caps) const;
};
VideoEncoderAv1Element::VideoEncoderAv1Element():
AkVideoEncoder()
{
this->d = new VideoEncoderAv1ElementPrivate(this);
this->setCodec(this->codecs().value(0));
}
VideoEncoderAv1Element::~VideoEncoderAv1Element()
{
this->d->uninit();
delete this->d;
}
QStringList VideoEncoderAv1Element::codecs() const
{
return {"libaom"};
}
AkVideoEncoderCodecID VideoEncoderAv1Element::codecID(const QString &codec) const
{
return codec == this->codecs().first()?
AkCompressedVideoCaps::VideoCodecID_av1:
AkCompressedVideoCaps::VideoCodecID_unknown;
}
QString VideoEncoderAv1Element::codecDescription(const QString &codec) const
{
return codec == this->codecs().first()?
QStringLiteral("AV1 (libaom)"):
QString();
}
AkCompressedVideoCaps VideoEncoderAv1Element::outputCaps() const
{
return this->d->m_outputCaps;
}
QByteArray VideoEncoderAv1Element::headers() const
{
return this->d->m_headers;
}
qint64 VideoEncoderAv1Element::encodedTimePts() const
{
return this->d->m_encodedTimePts;
}
AkPropertyOptions VideoEncoderAv1Element::options() const
{
return this->d->m_options;
}
AkPacket VideoEncoderAv1Element::iVideoStream(const AkVideoPacket &packet)
{
QMutexLocker mutexLocker(&this->d->m_mutex);
if (this->d->m_paused || !this->d->m_initialized || !this->d->m_fpsControl)
return {};
bool discard = false;
QMetaObject::invokeMethod(this->d->m_fpsControl.data(),
"discard",
Qt::DirectConnection,
Q_RETURN_ARG(bool, discard),
Q_ARG(AkVideoPacket, packet));
if (discard)
return {};
this->d->m_videoConverter.begin();
auto src = this->d->m_videoConverter.convert(packet);
this->d->m_videoConverter.end();
if (!src)
return {};
this->d->m_fpsControl->iStream(src);
return {};
}
bool VideoEncoderAv1Element::setState(ElementState state)
{
auto curState = this->state();
switch (curState) {
case AkElement::ElementStateNull: {
switch (state) {
case AkElement::ElementStatePaused:
this->d->m_paused = state == AkElement::ElementStatePaused;
case AkElement::ElementStatePlaying:
if (!this->d->init()) {
this->d->m_paused = false;
return false;
}
return AkElement::setState(state);
default:
break;
}
break;
}
case AkElement::ElementStatePaused: {
switch (state) {
case AkElement::ElementStateNull:
this->d->uninit();
return AkElement::setState(state);
case AkElement::ElementStatePlaying:
this->d->m_paused = false;
return AkElement::setState(state);
default:
break;
}
break;
}
case AkElement::ElementStatePlaying: {
switch (state) {
case AkElement::ElementStateNull:
this->d->uninit();
return AkElement::setState(state);
case AkElement::ElementStatePaused:
this->d->m_paused = true;
return AkElement::setState(state);
default:
break;
}
break;
}
}
return false;
}
VideoEncoderAv1ElementPrivate::VideoEncoderAv1ElementPrivate(VideoEncoderAv1Element *self):
self(self)
{
this->m_interface = aom_codec_av1_cx();
this->m_videoConverter.setAspectRatioMode(AkVideoConverter::AspectRatioMode_Fit);
this->m_options = {
{"speed" ,
QObject::tr("Speed"),
QObject::tr("Encoding speed"),
AkPropertyOption::OptionType_Number,
0.0,
11.0,
1.0,
11.0,
{}},
{"usage" ,
QObject::tr("Usage"),
"",
AkPropertyOption::OptionType_Number,
AOM_USAGE_GOOD_QUALITY,
AOM_USAGE_ALL_INTRA,
1.0,
AOM_USAGE_REALTIME,
{{"good_quality", QObject::tr("Good quality"), "", AOM_USAGE_GOOD_QUALITY},
{"realtime" , QObject::tr("Real time") , "", AOM_USAGE_REALTIME },
{"all_intra" , QObject::tr("All intra") , "", AOM_USAGE_ALL_INTRA }}},
{"errorResilient" ,
QObject::tr("Error resilient"),
QObject::tr("Protect the stream against packet loss"),
AkPropertyOption::OptionType_Flags,
0.0,
1.0,
1.0,
0.0,
{{"default", QObject::tr("Default"), QObject::tr("Improve resiliency against losses of whole frames"), AOM_ERROR_RESILIENT_DEFAULT}}},
{"lossless",
QObject::tr("lossless"),
QObject::tr("Enable lossless encoding"),
AkPropertyOption::OptionType_Boolean,
0.0,
1.0,
1.0,
0.0,
{}},
{"tuneContent" ,
QObject::tr("Tune content"),
"",
AkPropertyOption::OptionType_Number,
AOM_CONTENT_DEFAULT,
AOM_CONTENT_FILM,
1.0,
AOM_CONTENT_DEFAULT,
{{"default", QObject::tr("Default"), "", AOM_CONTENT_DEFAULT},
{"screen" , QObject::tr("Screen") , "", AOM_CONTENT_SCREEN },
{"film" , QObject::tr("Film") , "", AOM_CONTENT_FILM }}},
};
QObject::connect(self,
&AkVideoEncoder::inputCapsChanged,
[this] (const AkVideoCaps &inputCaps) {
this->updateOutputCaps(inputCaps);
});
if (this->m_fpsControl)
QObject::connect(this->m_fpsControl.data(),
&AkElement::oStream,
[this] (const AkPacket &packet) {
this->encodeFrame(packet);
});
}
VideoEncoderAv1ElementPrivate::~VideoEncoderAv1ElementPrivate()
{
}
bool VideoEncoderAv1ElementPrivate::init()
{
this->uninit();
if (!this->m_interface) {
qCritical() << "AV1 Codec interface was not initialized.";
return false;
}
auto inputCaps = self->inputCaps();
if (!inputCaps) {
qCritical() << "Invalid input format.";
return false;
}
auto eqFormat =
Av1PixFormatTable::byPixFormat(this->m_videoConverter.outputCaps().format());
aom_codec_enc_cfg_t codecConfigs;
memset(&codecConfigs, 0, sizeof(aom_codec_enc_cfg));
auto result =
aom_codec_enc_config_default(this->m_interface,
&codecConfigs,
self->optionValue("usage").toUInt());
if (result != AOM_CODEC_OK) {
printError(result);
return false;
}
codecConfigs.g_profile = eqFormat->profile;
codecConfigs.g_w = this->m_videoConverter.outputCaps().width();
codecConfigs.g_h = this->m_videoConverter.outputCaps().height();
codecConfigs.g_timebase.num =
this->m_videoConverter.outputCaps().fps().den();
codecConfigs.g_timebase.den =
this->m_videoConverter.outputCaps().fps().num();
codecConfigs.g_threads = QThread::idealThreadCount();
codecConfigs.rc_end_usage = AOM_CBR;
codecConfigs.rc_target_bitrate = self->bitrate() / 1000;
codecConfigs.g_bit_depth = aom_bit_depth(eqFormat->depth);
codecConfigs.g_input_bit_depth = eqFormat->depth;
codecConfigs.monochrome = eqFormat->monochrome;
codecConfigs.g_error_resilient = self->optionValue("errorResilient").toBool();
codecConfigs.g_pass = AOM_RC_ONE_PASS;
codecConfigs.kf_max_dist =
qMax(self->gop() * this->m_videoConverter.outputCaps().fps().num()
/ (1000 * this->m_videoConverter.outputCaps().fps().den()), 1);
memset(&this->m_encoder, 0, sizeof(aom_codec_ctx));
result = aom_codec_enc_init(&this->m_encoder,
this->m_interface,
&codecConfigs,
eqFormat->flags);
if (result != AOM_CODEC_OK) {
printError(result, &this->m_encoder);
return false;
}
int speed = qBound(0, self->optionValue("speed").toInt(), 11);
aom_codec_control(&this->m_encoder, AOME_SET_CPUUSED, speed);
auto level = this->aomLevel(this->m_videoConverter.outputCaps());
aom_codec_control(&this->m_encoder,
AV1E_SET_TARGET_SEQ_LEVEL_IDX,
static_cast<unsigned int>(level));
aom_codec_control(&this->m_encoder,
AV1E_SET_LOSSLESS,
self->optionValue("lossless").toUInt());
aom_codec_control(&this->m_encoder,
AV1E_SET_TUNE_CONTENT,
self->optionValue("tuneContent").toInt());
memset(&this->m_frame, 0, sizeof(aom_image_t));
if (!aom_img_alloc(&this->m_frame,
eqFormat->av1Format,
this->m_videoConverter.outputCaps().width(),
this->m_videoConverter.outputCaps().height(),
1)) {
qCritical() << "Failed to allocate the input frame";
aom_codec_destroy(&this->m_encoder);
return false;
}
this->updateHeaders();
if (this->m_fpsControl) {
this->m_fpsControl->setProperty("fps", QVariant::fromValue(this->m_videoConverter.outputCaps().fps()));
this->m_fpsControl->setProperty("fillGaps", self->fillGaps());
QMetaObject::invokeMethod(this->m_fpsControl.data(),
"restart",
Qt::DirectConnection);
}
this->m_encodedTimePts = 0;
this->m_initialized = true;
return true;
}
void VideoEncoderAv1ElementPrivate::uninit()
{
QMutexLocker mutexLocker(&this->m_mutex);
if (!this->m_initialized)
return;
this->m_initialized = false;
aom_codec_iter_t iter = nullptr;
for (;;) {
auto packet = aom_codec_get_cx_data(&this->m_encoder, &iter);
if (!packet)
break;
if (packet->kind != AOM_CODEC_CX_FRAME_PKT)
continue;
this->sendFrame(packet);
}
aom_img_free(&this->m_frame);
aom_codec_destroy(&this->m_encoder);
if (this->m_fpsControl)
QMetaObject::invokeMethod(this->m_fpsControl.data(),
"restart",
Qt::DirectConnection);
this->m_paused = false;
}
void VideoEncoderAv1ElementPrivate::updateHeaders()
{
auto aomHeaders = aom_codec_get_global_headers(&this->m_encoder);
if (!aomHeaders)
return;
QByteArray headers(reinterpret_cast<char *>(aomHeaders->buf),
aomHeaders->sz);
free(aomHeaders->buf);
free(aomHeaders);
if (this->m_headers == headers)
return;
this->m_headers = headers;
emit self->headersChanged(headers);
}
void VideoEncoderAv1ElementPrivate::updateOutputCaps(const AkVideoCaps &inputCaps)
{
if (!inputCaps) {
if (!this->m_outputCaps)
return;
this->m_outputCaps = AkCompressedVideoCaps();
emit self->outputCapsChanged(this->m_outputCaps);
return;
}
auto codecID = self->codecID(self->codec());
if (codecID == AkCompressedVideoCaps::VideoCodecID_unknown) {
if (!this->m_outputCaps)
return;
this->m_outputCaps = AkCompressedVideoCaps();
emit self->outputCapsChanged(this->m_outputCaps);
return;
}
auto eqFormat = Av1PixFormatTable::byPixFormat(inputCaps.format());
if (eqFormat->pixFormat == AkVideoCaps::Format_none)
eqFormat = Av1PixFormatTable::byPixFormat(AkVideoCaps::Format_yuv420p);
auto fps = inputCaps.fps();
if (!fps)
fps = {30, 1};
this->m_videoConverter.setOutputCaps({eqFormat->pixFormat,
inputCaps.width(),
inputCaps.height(),
fps});
AkCompressedVideoCaps outputCaps(codecID,
this->m_videoConverter.outputCaps(),
self->bitrate());
if (this->m_outputCaps == outputCaps)
return;
this->m_outputCaps = outputCaps;
emit self->outputCapsChanged(outputCaps);
}
void VideoEncoderAv1ElementPrivate::printError(aom_codec_err_t error,
const aom_codec_ctx_t *codecContext)
{
if (codecContext) {
auto errorStr = aom_codec_error_detail(codecContext);
if (QString(errorStr).isEmpty())
qCritical() << aom_codec_err_to_string(error);
else
qCritical() << errorStr;
} else {
qCritical() << aom_codec_err_to_string(error);
}
}
void VideoEncoderAv1ElementPrivate::encodeFrame(const AkVideoPacket &src)
{
this->m_id = src.id();
this->m_index = src.index();
// Write the current frame.
for (int plane = 0; plane < src.planes(); ++plane) {
auto planeData = this->m_frame.planes[plane];
auto oLineSize = this->m_frame.stride[plane];
auto lineSize = qMin<size_t>(src.lineSize(plane), oLineSize);
auto heightDiv = src.heightDiv(plane);
for (int y = 0; y < src.caps().height(); ++y) {
auto ys = y >> heightDiv;
memcpy(planeData + ys * oLineSize,
src.constLine(plane, y),
lineSize);
}
}
auto result = aom_codec_encode(&this->m_encoder,
&this->m_frame,
src.pts(),
src.duration(),
0);
if (result != AOM_CODEC_OK)
this->printError(result, &this->m_encoder);
aom_codec_iter_t iter = nullptr;
for (;;) {
auto aomPacket = aom_codec_get_cx_data(&this->m_encoder, &iter);
if (!aomPacket)
break;
if (aomPacket->kind != AOM_CODEC_CX_FRAME_PKT)
continue;
this->sendFrame(aomPacket);
}
this->m_encodedTimePts = src.pts() + src.duration();
emit self->encodedTimePtsChanged(this->m_encodedTimePts);
}
void VideoEncoderAv1ElementPrivate::sendFrame(const aom_codec_cx_pkt_t *aomPacket) const
{
AkCompressedVideoPacket packet(this->m_outputCaps,
aomPacket->data.frame.sz);
memcpy(packet.data(), aomPacket->data.frame.buf, packet.size());
packet.setFlags(aomPacket->data.frame.flags & AOM_FRAME_IS_KEY?
AkCompressedVideoPacket::VideoPacketTypeFlag_KeyFrame:
AkCompressedVideoPacket::VideoPacketTypeFlag_None);
packet.setPts(aomPacket->data.frame.pts);
packet.setDts(aomPacket->data.frame.pts);
packet.setDuration(aomPacket->data.frame.duration);
packet.setTimeBase({this->m_encoder.config.enc->g_timebase.num,
this->m_encoder.config.enc->g_timebase.den});
packet.setId(this->m_id);
packet.setIndex(this->m_index);
emit self->oStream(packet);
}
unsigned int VideoEncoderAv1ElementPrivate::aomLevel(const AkVideoCaps &caps) const
{
// https://aomediacodec.github.io/av1-spec/#levels
struct AomLevelsDef
{
quint64 maxLumaPictureSize;
int maxWidth;
int maxHeight;
quint64 lumaSampleRate;
quint64 maxBitrate;
};
static const AomLevelsDef aomLevels[] = {
{147456L , 2048 , 1152, 4423680L , 5529600L },
{278784L , 2816 , 1584, 8363520L , 10454400L },
{665856L , 4352 , 2448, 19975680L , 24969600L },
{1065024L , 5504 , 3096, 31950720L , 39938400L },
{2359296L , 6144 , 3456, 70778880L , 77856768L },
{2359296L , 6144 , 3456, 141557760L , 155713536L },
{8912896L , 8192 , 4352, 267386880L , 273715200L },
{8912896L , 8192 , 4352, 534773760L , 547430400L },
{8912896L , 8192 , 4352, 1069547520L, 1094860800L},
{8912896L , 8192 , 4352, 1069547520L, 1176502272L},
{35651584L, 16384, 8704, 1069547520L, 1176502272L},
{35651584L, 16384, 8704, 2139095040L, 2189721600L},
{35651584L, 16384, 8704, 4278190080L, 4379443200L},
{35651584L, 16384, 8704, 4278190080L, 4706009088L},
{0L , 0 , 0 , 0L , 0L },
};
quint64 lumaPictureSize = caps.width() * caps.height();
quint64 lumaSampleRate = qRound64(lumaPictureSize * caps.fps().value());
int bitrate = self->bitrate();
unsigned int i = 0;
for (auto level = aomLevels; level->maxLumaPictureSize; ++level, ++i)
if (level->maxLumaPictureSize >= lumaPictureSize
&& level->maxWidth >= caps.width()
&& level->maxHeight >= caps.height()
&& level->lumaSampleRate >= lumaSampleRate
&& level->maxBitrate >= bitrate) {
return i;
}
return 0;
}
#include "moc_videoencoderav1element.cpp"