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
media / base / audio_codecs.cc [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/audio_codecs.h"
#include <ostream>
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
namespace media {
// These names come from src/third_party/ffmpeg/libavcodec/codec_desc.c
std::string GetCodecName(AudioCodec codec) {
switch (codec) {
case AudioCodec::kUnknown:
return "unknown";
case AudioCodec::kAAC:
return "aac";
case AudioCodec::kMP3:
return "mp3";
case AudioCodec::kPCM:
case AudioCodec::kPCM_S16BE:
case AudioCodec::kPCM_S24BE:
return "pcm";
case AudioCodec::kVorbis:
return "vorbis";
case AudioCodec::kFLAC:
return "flac";
case AudioCodec::kAMR_NB:
return "amr_nb";
case AudioCodec::kAMR_WB:
return "amr_wb";
case AudioCodec::kPCM_MULAW:
return "pcm_mulaw";
case AudioCodec::kGSM_MS:
return "gsm_ms";
case AudioCodec::kOpus:
return "opus";
case AudioCodec::kIAMF:
return "iamf";
case AudioCodec::kPCM_ALAW:
return "pcm_alaw";
case AudioCodec::kEAC3:
return "eac3";
case AudioCodec::kALAC:
return "alac";
case AudioCodec::kAC3:
return "ac3";
case AudioCodec::kMpegHAudio:
return "mpeg-h-audio";
case AudioCodec::kDTS:
return "dts";
case AudioCodec::kDTSXP2:
return "dtsx-p2";
case AudioCodec::kDTSE:
return "dtse";
case AudioCodec::kAC4:
return "ac4";
}
}
std::string GetProfileName(AudioCodecProfile profile) {
switch (profile) {
case AudioCodecProfile::kUnknown:
return "unknown";
case AudioCodecProfile::kXHE_AAC:
return "xhe-aac";
case AudioCodecProfile::kIAMF_SIMPLE:
return "iamf-simple";
case AudioCodecProfile::kIAMF_BASE:
return "iamf-base";
}
}
AudioCodec StringToAudioCodec(const std::string& codec_id) {
if (codec_id == "aac")
return AudioCodec::kAAC;
if (codec_id == "ac-3" || codec_id == "mp4a.A5" || codec_id == "mp4a.a5")
return AudioCodec::kAC3;
if (codec_id == "ac-4" || codec_id == "mp4a.AE" || codec_id == "mp4a.ae" ||
base::StartsWith(codec_id, "ac-4.", base::CompareCase::SENSITIVE)) {
return AudioCodec::kAC4;
}
if (codec_id == "ec-3" || codec_id == "mp4a.A6" || codec_id == "mp4a.a6")
return AudioCodec::kEAC3;
if (codec_id == "dtsc" || codec_id == "mp4a.A9" || codec_id == "mp4a.a9") {
return AudioCodec::kDTS;
}
if (codec_id == "dtse" || codec_id == "mp4a.AC" || codec_id == "mp4a.ac") {
return AudioCodec::kDTSE;
}
if (codec_id == "dtsx" || codec_id == "mp4a.B2" || codec_id == "mp4a.b2") {
return AudioCodec::kDTSXP2;
}
if (codec_id == "mp3" || codec_id == "mp4a.69" || codec_id == "mp4a.6B")
return AudioCodec::kMP3;
if (codec_id == "alac")
return AudioCodec::kALAC;
if (codec_id == "flac" || codec_id == "fLaC") {
return AudioCodec::kFLAC;
}
if (base::StartsWith(codec_id, "mhm1.", base::CompareCase::SENSITIVE) ||
base::StartsWith(codec_id, "mha1.", base::CompareCase::SENSITIVE)) {
return AudioCodec::kMpegHAudio;
}
if (codec_id == "opus")
return AudioCodec::kOpus;
if (codec_id == "vorbis")
return AudioCodec::kVorbis;
if (base::StartsWith(codec_id, "mp4a.40.", base::CompareCase::SENSITIVE))
return AudioCodec::kAAC;
if (codec_id == "iamf" ||
base::StartsWith(codec_id, "iamf.", base::CompareCase::SENSITIVE)) {
return AudioCodec::kIAMF;
}
return AudioCodec::kUnknown;
}
std::ostream& operator<<(std::ostream& os, const AudioCodec& codec) {
return os << GetCodecName(codec);
}
#if BUILDFLAG(ENABLE_PLATFORM_AC4_AUDIO)
bool ParseDolbyAc4CodecId(const std::string& codec_id,
uint8_t* bitstream_versionc,
uint8_t* presentation_versionc,
uint8_t* presentation_levelc) {
// Reference: ETSI Standard: Digital Audio Compression (AC-4) Standard;
// Part 2: Immersive and personalized audio
// ETSI TS 103 190-2 v1.2.1 (2018-02)
// E.13 The MIME codecs parameter
// (https://www.etsi.org/deliver/etsi_ts/103100_103199/10319002/01.02.01_60/ts_10319002v010201p.pdf)
if (!base::StartsWith(codec_id, "ac-4")) {
return false;
}
const int kMaxAc4CodecIdLength =
4 // FOURCC string "ac-4"
+ 1 // delimiting period
+ 2 // bitstream_version version as 2 digit string
+ 1 // delimiting period
+ 2 // presentation_version as 2 digit string.
+ 1 // delimiting period
+ 2; // presentation_level as 2 digit string.
if (codec_id.size() > kMaxAc4CodecIdLength) {
DVLOG(4) << __func__ << ": Codec id is too long (" << codec_id << ")";
return false;
}
std::vector<std::string> elem = base::SplitString(
codec_id, ".", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
DCHECK(elem[0] == "ac-4");
if (elem.size() != 4) {
DVLOG(4) << __func__ << ": invalid Dolby AC-4 codec id:" << codec_id;
return false;
}
if (StringToAudioCodec(elem[0]) != AudioCodec::kAC4) {
DVLOG(4) << __func__ << ": invalid Dolby AC-4 codec id:" << codec_id;
return false;
}
// bitstream_version string should be two digits and equals "02". "00","01"
// are valid according to spec, but they are not used in real case anymore.
unsigned bitstream_version = 0;
if (elem[1].size() != 2 ||
!base::HexStringToUInt(elem[1], &bitstream_version) ||
bitstream_version != 0x02) {
DVLOG(4) << __func__
<< ": invalid Dolby AC-4 bitstream version: " << elem[1];
return false;
}
// If bitstream_version is "02", then "01" and "02" are valid values for
// presentation_version. Value "02" is special for AC-4 IMS.
// Reference: ETSI Standard: Digital Audio Compression (AC-4) Standard;
// Part 2: Immersive and personalized audio
// ETSI TS 103 190-2 v1.2.1 (2018-02)
// 4.6 Decoder compatibilities
// (https://www.etsi.org/deliver/etsi_ts/103100_103199/10319002/01.02.01_60/ts_10319002v010201p.pdf)
unsigned presentation_version = 0;
if (elem[2].size() != 2 ||
!base::HexStringToUInt(elem[2], &presentation_version) ||
!(presentation_version == 0x01 || presentation_version == 0x02)) {
DVLOG(4) << __func__
<< ": invalid Dolby AC-4 presentation_version: " << elem[1];
return false;
}
// presentation_level(mdcompat) should be two digits and in range
// [0,1,2,3,4,5,6,7].
// Reference: ETSI Standard: Digital Audio Compression (AC-4) Standard;
// Part 2: Immersive and personalized audio
// ETSI TS 103 190-2 v1.2.1 (2018-02)
// 6.3.2.2.3 mdcompat
// (https://www.etsi.org/deliver/etsi_ts/103100_103199/10319002/01.02.01_60/ts_10319002v010201p.pdf)
unsigned presentation_level = 0;
if (elem[3].size() != 2 ||
!base::HexStringToUInt(elem[3], &presentation_level) ||
presentation_level > 0x07) {
DVLOG(4) << __func__
<< ": invalid Dolby AC-4 presentation_level: " << elem[1];
return false;
}
if (bitstream_versionc) {
*bitstream_versionc = bitstream_version;
}
if (presentation_versionc) {
*presentation_versionc = presentation_version;
}
if (presentation_levelc) {
*presentation_levelc = presentation_level;
}
return true;
}
#endif // BUILDFLAG(ENABLE_PLATFORM_AC4_AUDIO)
#if BUILDFLAG(ENABLE_PLATFORM_IAMF_AUDIO)
bool ParseIamfCodecId(std::string_view codec_id,
uint8_t* primary_profilec,
uint8_t* additional_profilec) {
// Reference: Immersive Audio Model and Formats;
// v1.0.0
// 6.3. Codecs Parameter String
// (https://aomediacodec.github.io/iamf/v1.0.0.html#codecsparameter)
if (!codec_id.starts_with("iamf")) {
return false;
}
// For test purposes only, just "iamf" is acceptable.
if (codec_id == "iamf") {
return true;
}
constexpr int kMaxIamfCodecIdLength =
4 // FOURCC string "iamf".
+ 1 // delimiting period.
+ 3 // primary_profile as 3 digit string.
+ 1 // delimiting period.
+ 3 // additional_profile as 3 digit string.
+ 1 // delimiting period.
+ 9; // The remaining string is one of
// "opus", "mp4a.40.2", "flac", "ipcm".
if (codec_id.size() > kMaxIamfCodecIdLength) {
DVLOG(4) << __func__ << ": Codec id is too long (" << codec_id << ")";
return false;
}
std::vector<std::string> elem = base::SplitString(
codec_id, ".", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
if (elem.size() < 4) {
DVLOG(4) << __func__ << ": invalid IAMF codec id:" << codec_id;
return false;
}
DCHECK_EQ(elem[0], "iamf");
if (StringToAudioCodec(elem[0]) != AudioCodec::kIAMF) {
DVLOG(4) << __func__ << ": invalid IAMF codec id:" << codec_id;
return false;
}
// The primary profile string should be three digits, and should be between 0
// and 255 inclusive.
uint32_t primary_profile = 0;
if (elem[1].size() != 3 || !base::StringToUint(elem[1], &primary_profile) ||
primary_profile > 0xFF) {
DVLOG(4) << __func__ << ": invalid IAMF primary profile: " << elem[1];
return false;
}
// The additional profile string should be three digits, and should be between
// 0 and 255 inclusive.
uint32_t additional_profile = 0;
if (elem[2].size() != 3 ||
!base::StringToUint(elem[2], &additional_profile) ||
additional_profile > 0xFF) {
DVLOG(4) << __func__ << ": invalid IAMF additional profile: " << elem[2];
return false;
}
// The codec string should be one of "opus", "mp4a", "flac", or "ipcm".
std::string codec = base::ToLowerASCII(elem[3]);
if (codec.size() != 4 || ((codec != "opus") && (codec != "mp4a") &&
(codec != "flac") && (codec != "ipcm"))) {
DVLOG(4) << __func__ << ": invalid IAMF stream codec: " << elem[3];
return false;
}
if (codec == "mp4a") {
if (elem.size() != 6) {
DVLOG(4) << __func__
<< ": incorrect mp4a codec string syntax:" << codec_id;
return false;
}
// The fields following "mp4a" should be "40" and "2" to signal AAC-LC.
uint32_t object_type_indication = 0;
if (elem[4].size() != 2 ||
!base::HexStringToUInt(elem[4], &object_type_indication) ||
object_type_indication != 0x40) {
DVLOG(4) << __func__
<< ": invalid mp4a Object Type Indication:" << codec_id;
return false;
}
uint32_t audio_object_type = 0;
if (elem[5].size() != 1 ||
!base::HexStringToUInt(elem[5], &audio_object_type) ||
audio_object_type != 0x02) {
DVLOG(4) << __func__ << ": invalid mp4a Audio Object Type:" << codec_id;
return false;
}
}
if (primary_profilec) {
*primary_profilec = primary_profile;
}
if (additional_profilec) {
*additional_profilec = additional_profile;
}
return true;
}
#endif // BUILDFLAG(ENABLE_PLATFORM_IAMF_AUDIO)
} // namespace media