akaudiocaps.cpp
26.4 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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/* Webcamoid, webcam capture application.
* Copyright (C) 2016 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 <QDataStream>
#include <QDebug>
#include <QMetaEnum>
#include <QVector>
#include <QtMath>
#include <QQmlEngine>
#include "akaudiocaps.h"
#include "akcaps.h"
struct SampleFormats
{
AkAudioCaps::SampleFormat format;
AkAudioCaps::SampleType type;
int bps;
int endianness;
static inline const SampleFormats *byFormat(AkAudioCaps::SampleFormat format);
};
static const SampleFormats akSampleFormatsTable[] {
{AkAudioCaps::SampleFormat_s8 , AkAudioCaps::SampleType_int , 8, Q_BYTE_ORDER },
{AkAudioCaps::SampleFormat_u8 , AkAudioCaps::SampleType_uint , 8, Q_BYTE_ORDER },
{AkAudioCaps::SampleFormat_s16le, AkAudioCaps::SampleType_int , 16, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_s16be, AkAudioCaps::SampleType_int , 16, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_u16le, AkAudioCaps::SampleType_uint , 16, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_u16be, AkAudioCaps::SampleType_uint , 16, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_s32le, AkAudioCaps::SampleType_int , 32, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_s32be, AkAudioCaps::SampleType_int , 32, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_u32le, AkAudioCaps::SampleType_uint , 32, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_u32be, AkAudioCaps::SampleType_uint , 32, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_s64le, AkAudioCaps::SampleType_int , 64, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_s64be, AkAudioCaps::SampleType_int , 64, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_u64le, AkAudioCaps::SampleType_uint , 64, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_u64be, AkAudioCaps::SampleType_uint , 64, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_fltle, AkAudioCaps::SampleType_float , 32, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_fltbe, AkAudioCaps::SampleType_float , 32, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_dblle, AkAudioCaps::SampleType_float , 64, Q_LITTLE_ENDIAN},
{AkAudioCaps::SampleFormat_dblbe, AkAudioCaps::SampleType_float , 64, Q_BIG_ENDIAN },
{AkAudioCaps::SampleFormat_none , AkAudioCaps::SampleType_unknown, 0, Q_BYTE_ORDER },
};
const SampleFormats *SampleFormats::byFormat(AkAudioCaps::SampleFormat format)
{
auto fmt = akSampleFormatsTable;
for (; fmt->format != AkAudioCaps::SampleFormat_none; fmt++)
if (fmt->format == format)
return fmt;
return fmt;
}
struct SpeakerPositions
{
AkAudioCaps::Position position;
qreal azimuth;
qreal elevation;
static inline const SpeakerPositions *byPosition(AkAudioCaps::Position position);
};
/* Speakers positions based on:
*
* https://mediaarea.net/AudioChannelLayout
*/
static const SpeakerPositions akPositionsTable[] {
{AkAudioCaps::Position_FrontCenter , 0.0, 0.0},
{AkAudioCaps::Position_FrontLeft , 45.0, 0.0},
{AkAudioCaps::Position_FrontRight , -45.0, 0.0},
{AkAudioCaps::Position_BackCenter , 180.0, 0.0},
{AkAudioCaps::Position_BackLeft , 150.0, 0.0},
{AkAudioCaps::Position_BackRight , -150.0, 0.0},
{AkAudioCaps::Position_FrontLeftOfCenter , 15.0, 0.0},
{AkAudioCaps::Position_FrontRightOfCenter , -15.0, 0.0},
{AkAudioCaps::Position_WideLeft , 60.0, 0.0},
{AkAudioCaps::Position_WideRight , -60.0, 0.0},
{AkAudioCaps::Position_SideLeft , 90.0, 0.0},
{AkAudioCaps::Position_SideRight , -90.0, 0.0},
{AkAudioCaps::Position_LowFrequency1 , 60.0, -30.0},
{AkAudioCaps::Position_LowFrequency2 , -60.0, -30.0},
{AkAudioCaps::Position_TopCenter , 0.0, 90.0},
{AkAudioCaps::Position_TopFrontCenter , 0.0, 45.0},
{AkAudioCaps::Position_TopFrontLeft , 45.0, 45.0},
{AkAudioCaps::Position_TopFrontRight , -45.0, 45.0},
{AkAudioCaps::Position_TopBackCenter , 180.0, 45.0},
{AkAudioCaps::Position_TopBackLeft , 135.0, 45.0},
{AkAudioCaps::Position_TopBackRight , -135.0, 45.0},
{AkAudioCaps::Position_TopSideLeft , 90.0, 45.0},
{AkAudioCaps::Position_TopSideRight , -90.0, 45.0},
{AkAudioCaps::Position_BottomFrontCenter , 0.0, -30.0},
{AkAudioCaps::Position_BottomFrontLeft , 45.0, -30.0},
{AkAudioCaps::Position_BottomFrontRight , -45.0, -30.0},
{AkAudioCaps::Position_StereoLeft , 110.0, 0.0},
{AkAudioCaps::Position_StereoRight , -110.0, 0.0},
{AkAudioCaps::Position_SurroundDirectLeft , 90.0, 0.0},
{AkAudioCaps::Position_SurroundDirectRight, -90.0, 0.0},
{AkAudioCaps::Position_unknown , 0.0, 0.0},
};
const SpeakerPositions *SpeakerPositions::byPosition(AkAudioCaps::Position position)
{
auto pos = akPositionsTable;
for (; pos->position != AkAudioCaps::Position_unknown; pos++)
if (pos->position == position)
return pos;
return pos;
}
#define LAYOUT_MONO AkAudioCaps::Position_FrontCenter
#define LAYOUT_STEREO AkAudioCaps::Position_FrontLeft, \
AkAudioCaps::Position_FrontRight
#define LAYOUT_DOWNMIX AkAudioCaps::Position_StereoLeft, \
AkAudioCaps::Position_StereoRight
#define LAYOUT_2P1 LAYOUT_STEREO, AkAudioCaps::Position_LowFrequency1
#define LAYOUT_3P0 LAYOUT_STEREO, AkAudioCaps::Position_FrontCenter
#define LAYOUT_3P0_BACK LAYOUT_STEREO, AkAudioCaps::Position_BackCenter
#define LAYOUT_3P1 LAYOUT_3P0, AkAudioCaps::Position_LowFrequency1
#define LAYOUT_4P0 LAYOUT_3P0, AkAudioCaps::Position_BackCenter
#define LAYOUT_QUAD LAYOUT_STEREO, \
AkAudioCaps::Position_BackLeft, \
AkAudioCaps::Position_BackRight
#define LAYOUT_QUAD_SIDE LAYOUT_STEREO, \
AkAudioCaps::Position_SideLeft, \
AkAudioCaps::Position_SideRight
#define LAYOUT_4P1 LAYOUT_4P0, AkAudioCaps::Position_LowFrequency1
#define LAYOUT_5P0 LAYOUT_3P0, AkAudioCaps::Position_BackLeft, \
AkAudioCaps::Position_BackRight
#define LAYOUT_5P0_SIDE LAYOUT_3P0, AkAudioCaps::Position_SideLeft, \
AkAudioCaps::AkAudioCaps::Position_SideRight
#define LAYOUT_5P1 LAYOUT_5P0, AkAudioCaps::Position_LowFrequency1
#define LAYOUT_5P1_SIDE LAYOUT_5P0_SIDE, \
AkAudioCaps::Position_LowFrequency1
#define LAYOUT_6P0 LAYOUT_5P0_SIDE, AkAudioCaps::Position_BackCenter
#define LAYOUT_6P0_FRONT LAYOUT_QUAD_SIDE, \
AkAudioCaps::Position_FrontLeftOfCenter, \
AkAudioCaps::Position_FrontRightOfCenter
#define LAYOUT_HEXAGONAL LAYOUT_5P0, AkAudioCaps::Position_BackCenter
#define LAYOUT_6P1 LAYOUT_5P1_SIDE, AkAudioCaps::Position_BackCenter
#define LAYOUT_6P1_BACK LAYOUT_5P1, AkAudioCaps::Position_BackCenter
#define LAYOUT_6P1_FRONT LAYOUT_6P0_FRONT, \
AkAudioCaps::Position_LowFrequency1
#define LAYOUT_7P0 LAYOUT_5P0_SIDE, \
AkAudioCaps::Position_BackLeft, \
AkAudioCaps::Position_BackRight
#define LAYOUT_7P0_FRONT LAYOUT_5P0_SIDE, \
AkAudioCaps::Position_FrontLeftOfCenter, \
AkAudioCaps::Position_FrontRightOfCenter
#define LAYOUT_7P1 LAYOUT_5P1_SIDE, \
AkAudioCaps::Position_BackLeft, \
AkAudioCaps::Position_BackRight
#define LAYOUT_7P1_WIDE LAYOUT_5P1_SIDE, \
AkAudioCaps::Position_FrontLeftOfCenter, \
AkAudioCaps::Position_FrontRightOfCenter
#define LAYOUT_7P1_WIDE_BACK LAYOUT_5P1, \
AkAudioCaps::Position_FrontLeftOfCenter, \
AkAudioCaps::Position_FrontRightOfCenter
#define LAYOUT_OCTAGONAL LAYOUT_7P0, AkAudioCaps::Position_BackCenter
#define LAYOUT_HEXADECAGONAL LAYOUT_OCTAGONAL, \
AkAudioCaps::Position_WideLeft, \
AkAudioCaps::Position_WideRight, \
AkAudioCaps::Position_TopBackLeft, \
AkAudioCaps::Position_TopBackRight, \
AkAudioCaps::Position_TopBackCenter, \
AkAudioCaps::Position_TopFrontCenter, \
AkAudioCaps::Position_TopFrontLeft, \
AkAudioCaps::Position_TopFrontRight
struct ChannelLayouts
{
AkAudioCaps::ChannelLayout layout;
int channels;
AkAudioCaps::Position positions[32];
const char *description;
static inline const ChannelLayouts *byLayout(AkAudioCaps::ChannelLayout layout);
static inline const ChannelLayouts *byChannelCount(int channels);
static inline const ChannelLayouts *byDescription(const QString &description);
};
static const ChannelLayouts akChannelLayoutsTable[] {
{AkAudioCaps::Layout_mono , 1, {LAYOUT_MONO} , "mono" },
{AkAudioCaps::Layout_stereo , 2, {LAYOUT_STEREO} , "stereo" },
{AkAudioCaps::Layout_downmix , 2, {LAYOUT_DOWNMIX} , "downmix" },
{AkAudioCaps::Layout_2p1 , 3, {LAYOUT_2P1} , "2.1" },
{AkAudioCaps::Layout_3p0 , 3, {LAYOUT_3P0} , "3.0" },
{AkAudioCaps::Layout_3p0_back , 3, {LAYOUT_3P0_BACK} , "3.0(back)" },
{AkAudioCaps::Layout_3p1 , 4, {LAYOUT_3P1} , "3.1" },
{AkAudioCaps::Layout_4p0 , 4, {LAYOUT_4P0} , "4.0" },
{AkAudioCaps::Layout_quad , 4, {LAYOUT_QUAD} , "quad" },
{AkAudioCaps::Layout_quad_side , 4, {LAYOUT_QUAD_SIDE} , "quad(side)" },
{AkAudioCaps::Layout_4p1 , 5, {LAYOUT_4P1} , "4.1" },
{AkAudioCaps::Layout_5p0 , 5, {LAYOUT_5P0} , "5.0" },
{AkAudioCaps::Layout_5p0_side , 5, {LAYOUT_5P0_SIDE} , "5.0(side)" },
{AkAudioCaps::Layout_5p1 , 6, {LAYOUT_5P1} , "5.1" },
{AkAudioCaps::Layout_5p1_side , 6, {LAYOUT_5P1_SIDE} , "5.1(side)" },
{AkAudioCaps::Layout_6p0 , 6, {LAYOUT_6P0} , "6.0" },
{AkAudioCaps::Layout_6p0_front , 6, {LAYOUT_6P0_FRONT} , "6.0(front)" },
{AkAudioCaps::Layout_hexagonal , 6, {LAYOUT_HEXAGONAL} , "hexagonal" },
{AkAudioCaps::Layout_6p1 , 7, {LAYOUT_6P1} , "6.1" },
{AkAudioCaps::Layout_6p1_back , 7, {LAYOUT_6P1_BACK} , "6.1(back)" },
{AkAudioCaps::Layout_6p1_front , 7, {LAYOUT_6P1_FRONT} , "6.1(front)" },
{AkAudioCaps::Layout_7p0 , 7, {LAYOUT_7P0} , "7.0" },
{AkAudioCaps::Layout_7p0_front , 7, {LAYOUT_7P0_FRONT} , "7.0(front)" },
{AkAudioCaps::Layout_7p1 , 8, {LAYOUT_7P1} , "7.1" },
{AkAudioCaps::Layout_7p1_wide , 8, {LAYOUT_7P1_WIDE} , "7.1(wide)" },
{AkAudioCaps::Layout_7p1_wide_back, 8, {LAYOUT_7P1_WIDE_BACK}, "7.1(wide-back)"},
{AkAudioCaps::Layout_octagonal , 8, {LAYOUT_OCTAGONAL} , "octagonal" },
{AkAudioCaps::Layout_hexadecagonal, 16, {LAYOUT_HEXADECAGONAL}, "hexadecagonal" },
{AkAudioCaps::Layout_none , 0, {} , "none" },
};
const ChannelLayouts *ChannelLayouts::byLayout(AkAudioCaps::ChannelLayout layout)
{
auto lyt = akChannelLayoutsTable;
for (; lyt->layout != AkAudioCaps::Layout_none; lyt++)
if (lyt->layout == layout)
return lyt;
return lyt;
}
const ChannelLayouts *ChannelLayouts::byChannelCount(int channels)
{
auto lyt = akChannelLayoutsTable;
for (; lyt->layout != AkAudioCaps::Layout_none; lyt++)
if (lyt->channels == channels)
return lyt;
return lyt;
}
const ChannelLayouts *ChannelLayouts::byDescription(const QString &description)
{
auto lyt = akChannelLayoutsTable;
for (; lyt->layout != AkAudioCaps::Layout_none; lyt++)
if (lyt->description == description)
return lyt;
return lyt;
}
class AkAudioCapsPrivate
{
public:
AkAudioCaps::SampleFormat m_format {AkAudioCaps::SampleFormat_none};
AkAudioCaps::ChannelLayout m_layout {AkAudioCaps::Layout_none};
int m_planar {false};
int m_rate {0};
};
AkAudioCaps::AkAudioCaps(QObject *parent):
QObject(parent)
{
this->d = new AkAudioCapsPrivate();
}
AkAudioCaps::AkAudioCaps(SampleFormat format,
ChannelLayout layout,
bool planar,
int rate):
QObject()
{
this->d = new AkAudioCapsPrivate();
this->d->m_format = format;
this->d->m_layout = layout;
this->d->m_planar = planar;
this->d->m_rate = rate;
}
AkAudioCaps::AkAudioCaps(const AkCaps &other):
QObject()
{
this->d = new AkAudioCapsPrivate();
if (other.type() == AkCaps::CapsAudio) {
auto data = reinterpret_cast<AkAudioCaps *>(other.privateData());
this->d->m_format = data->d->m_format;
this->d->m_layout = data->d->m_layout;
this->d->m_planar = data->d->m_planar;
this->d->m_rate = data->d->m_rate;
}
}
AkAudioCaps::AkAudioCaps(const AkAudioCaps &other):
QObject()
{
this->d = new AkAudioCapsPrivate();
this->d->m_format = other.d->m_format;
this->d->m_layout = other.d->m_layout;
this->d->m_planar = other.d->m_planar;
this->d->m_rate = other.d->m_rate;
}
AkAudioCaps::~AkAudioCaps()
{
delete this->d;
}
AkAudioCaps &AkAudioCaps::operator =(const AkCaps &other)
{
if (other.type() == AkCaps::CapsAudio) {
auto data = reinterpret_cast<AkAudioCaps *>(other.privateData());
this->d->m_format = data->d->m_format;
this->d->m_layout = data->d->m_layout;
this->d->m_planar = data->d->m_planar;
this->d->m_rate = data->d->m_rate;
} else {
this->d->m_format = SampleFormat_none;
this->d->m_layout = Layout_none;
this->d->m_planar = false;
this->d->m_rate = 0;
}
return *this;
}
AkAudioCaps &AkAudioCaps::operator =(const AkAudioCaps &other)
{
if (this != &other) {
this->d->m_format = other.d->m_format;
this->d->m_layout = other.d->m_layout;
this->d->m_planar = other.d->m_planar;
this->d->m_rate = other.d->m_rate;;
}
return *this;
}
bool AkAudioCaps::operator ==(const AkAudioCaps &other) const
{
return this->d->m_format == other.d->m_format
&& this->d->m_layout == other.d->m_layout
&& this->d->m_planar == other.d->m_planar
&& this->d->m_rate == other.d->m_rate;
}
bool AkAudioCaps::operator !=(const AkAudioCaps &other) const
{
return !(*this == other);
}
QObject *AkAudioCaps::create()
{
return new AkAudioCaps();
}
QObject *AkAudioCaps::create(const AkCaps &caps)
{
return new AkAudioCaps(caps);
}
QObject *AkAudioCaps::create(const AkAudioCaps &caps)
{
return new AkAudioCaps(caps);
}
QObject *AkAudioCaps::create(SampleFormat format,
ChannelLayout layout,
bool planar,
int rate)
{
return new AkAudioCaps(format, layout, planar, rate);
}
QVariant AkAudioCaps::toVariant() const
{
return QVariant::fromValue(*this);
}
AkAudioCaps::operator bool() const
{
auto af = SampleFormats::byFormat(this->d->m_format);
auto layouts = ChannelLayouts::byLayout(this->d->m_layout);
if (!af || !layouts)
return false;
if (af->format == SampleFormat_none || layouts->layout == Layout_none)
return false;
return this->d->m_rate > 0;
}
AkAudioCaps::operator AkCaps() const
{
AkCaps caps;
caps.setType(AkCaps::CapsAudio);
caps.setPrivateData(new AkAudioCaps(*this),
[] (void *data) -> void * {
return new AkAudioCaps(*reinterpret_cast<AkAudioCaps *>(data));
},
[] (void *data) {
delete reinterpret_cast<AkAudioCaps *>(data);
});
return caps;
}
AkAudioCaps::SampleFormat AkAudioCaps::format() const
{
return this->d->m_format;
}
AkAudioCaps::ChannelLayout AkAudioCaps::layout() const
{
return this->d->m_layout;
}
bool AkAudioCaps::planar() const
{
return this->d->m_planar;
}
int AkAudioCaps::bps() const
{
return AkAudioCaps::bitsPerSample(this->d->m_format);
}
int AkAudioCaps::channels() const
{
return AkAudioCaps::channelCount(this->d->m_layout);
}
int AkAudioCaps::rate() const
{
return this->d->m_rate;
}
const QVector<AkAudioCaps::Position> AkAudioCaps::positions() const
{
auto layouts = ChannelLayouts::byLayout(this->d->m_layout);
if (!layouts)
return {};
if (layouts->layout == Layout_none)
return {};
QVector<AkAudioCaps::Position> positions;
for (int i = 0; i < layouts->channels; i++)
positions << layouts->positions[i];
return positions;
}
int AkAudioCaps::bitsPerSample(SampleFormat sampleFormat)
{
return SampleFormats::byFormat(sampleFormat)->bps;
}
QString AkAudioCaps::sampleFormatToString(SampleFormat sampleFormat)
{
AkAudioCaps caps;
int formatIndex = caps.metaObject()->indexOfEnumerator("SampleFormat");
QMetaEnum formatEnum = caps.metaObject()->enumerator(formatIndex);
QString format(formatEnum.valueToKey(sampleFormat));
format.remove("SampleFormat_");
return format;
}
AkAudioCaps::SampleFormat AkAudioCaps::sampleFormatFromProperties(SampleType type,
int bps,
int endianness)
{
auto fmt = akSampleFormatsTable;
for (; fmt->format != AkAudioCaps::SampleFormat_none; fmt++)
if (fmt->type == type
&& fmt->bps == bps
&& fmt->endianness == endianness) {
return fmt->format;
}
return AkAudioCaps::SampleFormat_none;
}
bool AkAudioCaps::sampleFormatProperties(SampleFormat sampleFormat,
SampleType *type,
int *bps,
int *endianness)
{
auto format = SampleFormats::byFormat(sampleFormat);
if (!format)
return false;
if (type)
*type = format->type;
if (bps)
*bps = format->bps;
if (endianness)
*endianness = format->endianness;
return true;
}
AkAudioCaps::SampleType AkAudioCaps::sampleType(SampleFormat sampleFormat)
{
return SampleFormats::byFormat(sampleFormat)->type;
}
QString AkAudioCaps::channelLayoutToString(ChannelLayout channelLayout)
{
return ChannelLayouts::byLayout(channelLayout)->description;
}
AkAudioCaps::ChannelLayout AkAudioCaps::channelLayoutFromPositions(const QVector<Position> &positions)
{
QSet<Position> positionsSet;
for (auto &position: positions)
positionsSet << position;
auto lyt = akChannelLayoutsTable;
for (; lyt->layout != AkAudioCaps::Layout_none; lyt++) {
if (lyt->channels != positions.size())
continue;
QSet<Position> layoutPositionsSet;
for (int i = 0; i < lyt->channels; i++)
layoutPositionsSet << lyt->positions[i];
if (positionsSet == layoutPositionsSet)
return lyt->layout;
}
return Layout_none;
}
int AkAudioCaps::channelCount(ChannelLayout channelLayout)
{
return ChannelLayouts::byLayout(channelLayout)->channels;
}
int AkAudioCaps::endianness(SampleFormat sampleFormat)
{
return SampleFormats::byFormat(sampleFormat)->endianness;
}
AkAudioCaps::ChannelLayout AkAudioCaps::defaultChannelLayout(int channelCount)
{
return ChannelLayouts::byChannelCount(channelCount)->layout;
}
QVector<AkAudioCaps::Position> AkAudioCaps::positions(ChannelLayout channelLayout)
{
auto layout = ChannelLayouts::byLayout(channelLayout);
QVector<Position> positions;
for (int i = 0; i < layout->channels; i++)
positions << layout->positions[i];
return positions;
}
AkAudioCaps::SpeakerPosition AkAudioCaps::position(Position position)
{
auto sp = SpeakerPositions::byPosition(position);
if (!sp)
return {};
return {sp->azimuth, sp->elevation};
}
AkAudioCaps::SpeakerPosition AkAudioCaps::position(int channel) const
{
auto positions = AkAudioCaps::positions(this->d->m_layout);
return AkAudioCaps::position(positions.at(channel));
}
qreal AkAudioCaps::distanceFactor(SpeakerPosition position1,
SpeakerPosition position2)
{
auto d = 1.0 + (position1 - position2);
return 1.0 / (d * d);
}
qreal AkAudioCaps::distanceFactor(Position position1, Position position2)
{
return distanceFactor(position(position1), position(position2));
}
void AkAudioCaps::setFormat(SampleFormat format)
{
if (this->d->m_format == format)
return;
this->d->m_format = format;
emit this->formatChanged(format);
}
void AkAudioCaps::setLayout(ChannelLayout layout)
{
if (this->d->m_layout == layout)
return;
this->d->m_layout = layout;
emit this->layoutChanged(layout);
}
void AkAudioCaps::setPlanar(bool planar)
{
if (this->d->m_planar == planar)
return;
this->d->m_planar = planar;
emit this->planarChanged(planar);
}
void AkAudioCaps::setRate(int rate)
{
if (this->d->m_rate == rate)
return;
this->d->m_rate = rate;
emit this->rateChanged(rate);
}
void AkAudioCaps::resetFormat()
{
this->setFormat(SampleFormat_none);
}
void AkAudioCaps::resetLayout()
{
this->setLayout(Layout_none);
}
void AkAudioCaps::resetPlanar()
{
this->setPlanar(false);
}
void AkAudioCaps::resetRate()
{
this->setRate(0);
}
void AkAudioCaps::registerTypes()
{
qRegisterMetaType<AkAudioCaps>("AkAudioCaps");
qRegisterMetaType<SampleFormat>("SampleFormat");
qRegisterMetaType<SampleFormatList>("SampleFormatList");
qRegisterMetaType<SampleType>("SampleType");
qRegisterMetaType<Position>("Position");
qRegisterMetaType<ChannelLayout>("ChannelLayout");
qRegisterMetaType<ChannelLayoutList>("ChannelLayoutList");
qmlRegisterSingletonType<AkAudioCaps>("Ak", 1, 0, "AkAudioCaps",
[] (QQmlEngine *qmlEngine,
QJSEngine *jsEngine) -> QObject * {
Q_UNUSED(qmlEngine)
Q_UNUSED(jsEngine)
return new AkAudioCaps();
});
}
qreal operator -(const AkAudioCaps::SpeakerPosition &pos1,
const AkAudioCaps::SpeakerPosition &pos2)
{
auto a1 = qDegreesToRadians(pos1.first);
auto e1 = qDegreesToRadians(pos1.second);
auto x1 = qCos(e1) * qCos(a1);
auto y1 = qCos(e1) * qSin(a1);
auto z1 = qSin(e1);
auto a2 = qDegreesToRadians(pos2.first);
auto e2 = qDegreesToRadians(pos2.second);
auto x2 = qCos(e2) * qCos(a2);
auto y2 = qCos(e2) * qSin(a2);
auto z2 = qSin(e2);
auto dx = x1 - x2;
auto dy = y1 - y2;
auto dz = z1 - z2;
return qSqrt(dx * dx + dy * dy + dz * dz);
}
QDebug operator <<(QDebug debug, const AkAudioCaps &caps)
{
QDebugStateSaver saver(debug);
debug.nospace() << "AkAudioCaps("
<< "format="
<< caps.format()
<< ",layout="
<< caps.layout()
<< ",planar="
<< caps.planar()
<< ",rate="
<< caps.rate()
<< ")";
return debug;
}
QDebug operator <<(QDebug debug, AkAudioCaps::SampleFormat format)
{
QDebugStateSaver saver(debug);
debug.nospace() << AkAudioCaps::sampleFormatToString(format).toStdString().c_str();
return debug;
}
QDebug operator <<(QDebug debug, AkAudioCaps::SampleType sampleType)
{
AkAudioCaps caps;
int sampleTypeIndex = caps.metaObject()->indexOfEnumerator("SampleType");
QMetaEnum sampleTypeEnum = caps.metaObject()->enumerator(sampleTypeIndex);
QString sampleTypeStr(sampleTypeEnum.valueToKey(sampleType));
sampleTypeStr.remove("SampleType_");
QDebugStateSaver saver(debug);
debug.nospace() << sampleTypeStr.toStdString().c_str();
return debug;
}
QDebug operator <<(QDebug debug, AkAudioCaps::Position position)
{
AkAudioCaps caps;
int positionIndex = caps.metaObject()->indexOfEnumerator("Position");
QMetaEnum positionEnum = caps.metaObject()->enumerator(positionIndex);
QString positionStr(positionEnum.valueToKey(position));
positionStr.remove("Position_");
QDebugStateSaver saver(debug);
debug.nospace() << positionStr.toStdString().c_str();
return debug;
}
QDebug operator <<(QDebug debug, AkAudioCaps::ChannelLayout layout)
{
QDebugStateSaver saver(debug);
debug.nospace() << AkAudioCaps::channelLayoutToString(layout).toStdString().c_str();
return debug;
}
QDataStream &operator >>(QDataStream &istream, AkAudioCaps &caps)
{
AkAudioCaps::SampleFormat format = AkAudioCaps::SampleFormat_none;
istream >> format;
caps.setFormat(format);
AkAudioCaps::ChannelLayout layout = AkAudioCaps::Layout_none;
istream >> layout;
caps.setLayout(layout);
bool planar = false;
istream >> planar;
caps.setPlanar(planar);
int rate = 0;
istream >> rate;
caps.setRate(rate);
return istream;
}
QDataStream &operator <<(QDataStream &ostream, const AkAudioCaps &caps)
{
ostream << caps.format();
ostream << caps.layout();
ostream << caps.planar();
ostream << caps.rate();
return ostream;
}
#include "moc_akaudiocaps.cpp"