forked from w3c/webcodecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flac_codec_registration.src.html
145 lines (113 loc) · 5.18 KB
/
flac_codec_registration.src.html
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
<pre class='metadata'>
Title: FLAC WebCodecs Registration
Repository: w3c/webcodecs
Status: NOTE-ED
Shortname: webcodecs-flac-codec-registration
Level: none
Group: mediawg
ED: https://w3c.github.io/webcodecs/flac_codec_registration.html
TR: https://www.w3.org/TR/webcodecs-flac-codec-registration/
Editor: Paul Adenot, w3cid 62410, Mozilla https://www.mozilla.org/
Editor: Bernard Aboba, w3cid 65611, Microsoft Corporation https://www.microsoft.com/
Former Editor: Chris Cunningham, w3cid 114832, Google Inc. https://www.google.com/
Abstract: This registration is entered into the [[webcodecs-codec-registry]].
It describes, for FLAC, the (1) fully qualified codec strings,
(2) the codec-specific {{EncodedAudioChunk}}
{{EncodedAudioChunk/[[internal data]]}} bytes, (3) the
{{AudioDecoderConfig/description|AudioDecoderConfig.description}} bytes,
(4) the values of {{EncodedAudioChunk}} {{EncodedAudioChunk/[[type]]}},
and (5) the codec-specific extensions to {{AudioEncoderConfig}}.
The registration is not intended to include any information on whether a
codec format is encumbered by intellectual property claims. Implementers and
authors are advised to seek appropriate legal counsel in this matter if they
intend to implement or use a specific codec format. Implementers of
WebCodecs are not required to support the FLAC codec.
This registration is non-normative.
Markup Shorthands:css no, markdown yes, dfn yes
!Participate: <a href="https://github.com/w3c/webcodecs">Git Repository.</a>
!Participate: <a href="https://github.com/w3c/webcodecs/issues/new">File an issue.</a>
!Version History: <a href="https://github.com/w3c/webcodecs/commits">https://github.com/w3c/webcodecs/commits</a>
</pre>
<pre class='biblio'>
{
"FLAC": {
"href": "https://datatracker.ietf.org/doc/draft-ietf-cellar-flac",
"title": "Free Lossless Audio Codec",
"publisher": "IETF"
}
}
</pre>
Fully qualified codec strings {#fully-qualified-codec-strings}
==============================================================
The codec string is `"flac"`.
EncodedAudioChunk data {#encodedaudiochunk-data}
================================================
{{EncodedAudioChunk}} {{EncodedAudioChunk/[[internal data]]}} is expected to be
a "FRAME" as described in [[FLAC]].
AudioDecoderConfig description {#audiodecoderconfig-description}
================================================================
{{AudioDecoderConfig/description}} is required, and has to be the following:
- The bytes `0x66 0x4C 0x61 0x43` ("`fLaC`" in ASCII)
- A `metadata block` (called the STREAMINFO block) as described in section 7 of [[FLAC]]
- Optionaly other metadata blocks, that are not used by the specification
The {{AudioDecoderConfig/sampleRate}} and {{AudioDecoderConfig/numberOfChannels}}
members are overridden by what the decoder finds in the
{{AudioDecoderConfig/description}}.
NOTE: This corresponds to the beginning of a FLAC bitstream, before the audio
frames.
EncodedAudioChunk type {#encodedaudiochunk-type}
================================================
The {{EncodedAudioChunk/[[type]]}} for an {{EncodedAudioChunk}} containing
FLAC is always "{{EncodedAudioChunkType/key}}".
NOTE: Once the initialization has succeeded, any FLAC packet can be decoded at
any time without error, but this might not result in the expected audio output.
AudioEncoderConfig extensions {#audioencoderconfig-extensions}
=============================================================
<pre class='idl'>
<xmp>
partial dictionary AudioEncoderConfig {
FlacEncoderConfig flac;
};
</xmp>
</pre>
<dl>
<dt><dfn dict-member for=AudioEncoderConfig>flac</dfn></dt>
<dd>
Contains codec specific configuration options for the FLAC codec.
</dd>
</dl>
FlacEncoderConfig {#flac-encoder-config}
--------------------------------------
<pre class='idl'>
<xmp>
dictionary FlacEncoderConfig {
[EnforceRange] unsigned long blockSize = 0;
[EnforceRange] unsigned long compressLevel = 5;
};
</xmp>
</pre>
To check if an {{FlacEncoderConfig}} is valid, run these steps:
1. If {{FlacEncoderConfig/blockSize}} is not a valid block size,
which is described section 5.1 of [[FLAC]], return `false`.
1. If {{FlacEncoderConfig/compressLevel}} is specified and not within the range of
`0` (fastest, least compression) and `8` (slowest, most compression) inclusively, return `false`.
2. Return `true`.
<dl>
<dt><dfn dict-member for=FlacEncoderConfig>blockSize</dfn></dt>
<dd>
Configures the number of samples to use per frame, of output {{EncodedAudioChunk}}s.
NOTE: Use 0 to let the encoder estimate a blocksize by default.
</dd>
<dt><dfn dict-member for=FlacEncoderConfig>compressLevel</dfn></dt>
<dd>
Configures the compression level to use while encoding.
</dd>
</dl>
Privacy Considerations {#privacy-considerations}
==========================================================================
Please refer to the section [[WEBCODECS#privacy-considerations|Privacy
Considerations]] in [[WEBCODECS]].
Security Considerations {#security-considerations}
==========================================================================
Please refer to the section [[WEBCODECS#security-considerations|Security
Considerations]] in [[WEBCODECS]].