cannam@87
|
1 /* libFLAC - Free Lossless Audio Codec library
|
cannam@87
|
2 * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
cannam@87
|
3 *
|
cannam@87
|
4 * Redistribution and use in source and binary forms, with or without
|
cannam@87
|
5 * modification, are permitted provided that the following conditions
|
cannam@87
|
6 * are met:
|
cannam@87
|
7 *
|
cannam@87
|
8 * - Redistributions of source code must retain the above copyright
|
cannam@87
|
9 * notice, this list of conditions and the following disclaimer.
|
cannam@87
|
10 *
|
cannam@87
|
11 * - Redistributions in binary form must reproduce the above copyright
|
cannam@87
|
12 * notice, this list of conditions and the following disclaimer in the
|
cannam@87
|
13 * documentation and/or other materials provided with the distribution.
|
cannam@87
|
14 *
|
cannam@87
|
15 * - Neither the name of the Xiph.org Foundation nor the names of its
|
cannam@87
|
16 * contributors may be used to endorse or promote products derived from
|
cannam@87
|
17 * this software without specific prior written permission.
|
cannam@87
|
18 *
|
cannam@87
|
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
cannam@87
|
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
cannam@87
|
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
cannam@87
|
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
|
cannam@87
|
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
cannam@87
|
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
cannam@87
|
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
cannam@87
|
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
cannam@87
|
27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
cannam@87
|
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
cannam@87
|
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
cannam@87
|
30 */
|
cannam@87
|
31
|
cannam@87
|
32 #ifndef FLAC__FORMAT_H
|
cannam@87
|
33 #define FLAC__FORMAT_H
|
cannam@87
|
34
|
cannam@87
|
35 #include "export.h"
|
cannam@87
|
36 #include "ordinals.h"
|
cannam@87
|
37
|
cannam@87
|
38 #ifdef __cplusplus
|
cannam@87
|
39 extern "C" {
|
cannam@87
|
40 #endif
|
cannam@87
|
41
|
cannam@87
|
42 /** \file include/FLAC/format.h
|
cannam@87
|
43 *
|
cannam@87
|
44 * \brief
|
cannam@87
|
45 * This module contains structure definitions for the representation
|
cannam@87
|
46 * of FLAC format components in memory. These are the basic
|
cannam@87
|
47 * structures used by the rest of the interfaces.
|
cannam@87
|
48 *
|
cannam@87
|
49 * See the detailed documentation in the
|
cannam@87
|
50 * \link flac_format format \endlink module.
|
cannam@87
|
51 */
|
cannam@87
|
52
|
cannam@87
|
53 /** \defgroup flac_format FLAC/format.h: format components
|
cannam@87
|
54 * \ingroup flac
|
cannam@87
|
55 *
|
cannam@87
|
56 * \brief
|
cannam@87
|
57 * This module contains structure definitions for the representation
|
cannam@87
|
58 * of FLAC format components in memory. These are the basic
|
cannam@87
|
59 * structures used by the rest of the interfaces.
|
cannam@87
|
60 *
|
cannam@87
|
61 * First, you should be familiar with the
|
cannam@87
|
62 * <A HREF="../format.html">FLAC format</A>. Many of the values here
|
cannam@87
|
63 * follow directly from the specification. As a user of libFLAC, the
|
cannam@87
|
64 * interesting parts really are the structures that describe the frame
|
cannam@87
|
65 * header and metadata blocks.
|
cannam@87
|
66 *
|
cannam@87
|
67 * The format structures here are very primitive, designed to store
|
cannam@87
|
68 * information in an efficient way. Reading information from the
|
cannam@87
|
69 * structures is easy but creating or modifying them directly is
|
cannam@87
|
70 * more complex. For the most part, as a user of a library, editing
|
cannam@87
|
71 * is not necessary; however, for metadata blocks it is, so there are
|
cannam@87
|
72 * convenience functions provided in the \link flac_metadata metadata
|
cannam@87
|
73 * module \endlink to simplify the manipulation of metadata blocks.
|
cannam@87
|
74 *
|
cannam@87
|
75 * \note
|
cannam@87
|
76 * It's not the best convention, but symbols ending in _LEN are in bits
|
cannam@87
|
77 * and _LENGTH are in bytes. _LENGTH symbols are \#defines instead of
|
cannam@87
|
78 * global variables because they are usually used when declaring byte
|
cannam@87
|
79 * arrays and some compilers require compile-time knowledge of array
|
cannam@87
|
80 * sizes when declared on the stack.
|
cannam@87
|
81 *
|
cannam@87
|
82 * \{
|
cannam@87
|
83 */
|
cannam@87
|
84
|
cannam@87
|
85
|
cannam@87
|
86 /*
|
cannam@87
|
87 Most of the values described in this file are defined by the FLAC
|
cannam@87
|
88 format specification. There is nothing to tune here.
|
cannam@87
|
89 */
|
cannam@87
|
90
|
cannam@87
|
91 /** The largest legal metadata type code. */
|
cannam@87
|
92 #define FLAC__MAX_METADATA_TYPE_CODE (126u)
|
cannam@87
|
93
|
cannam@87
|
94 /** The minimum block size, in samples, permitted by the format. */
|
cannam@87
|
95 #define FLAC__MIN_BLOCK_SIZE (16u)
|
cannam@87
|
96
|
cannam@87
|
97 /** The maximum block size, in samples, permitted by the format. */
|
cannam@87
|
98 #define FLAC__MAX_BLOCK_SIZE (65535u)
|
cannam@87
|
99
|
cannam@87
|
100 /** The maximum block size, in samples, permitted by the FLAC subset for
|
cannam@87
|
101 * sample rates up to 48kHz. */
|
cannam@87
|
102 #define FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ (4608u)
|
cannam@87
|
103
|
cannam@87
|
104 /** The maximum number of channels permitted by the format. */
|
cannam@87
|
105 #define FLAC__MAX_CHANNELS (8u)
|
cannam@87
|
106
|
cannam@87
|
107 /** The minimum sample resolution permitted by the format. */
|
cannam@87
|
108 #define FLAC__MIN_BITS_PER_SAMPLE (4u)
|
cannam@87
|
109
|
cannam@87
|
110 /** The maximum sample resolution permitted by the format. */
|
cannam@87
|
111 #define FLAC__MAX_BITS_PER_SAMPLE (32u)
|
cannam@87
|
112
|
cannam@87
|
113 /** The maximum sample resolution permitted by libFLAC.
|
cannam@87
|
114 *
|
cannam@87
|
115 * \warning
|
cannam@87
|
116 * FLAC__MAX_BITS_PER_SAMPLE is the limit of the FLAC format. However,
|
cannam@87
|
117 * the reference encoder/decoder is currently limited to 24 bits because
|
cannam@87
|
118 * of prevalent 32-bit math, so make sure and use this value when
|
cannam@87
|
119 * appropriate.
|
cannam@87
|
120 */
|
cannam@87
|
121 #define FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE (24u)
|
cannam@87
|
122
|
cannam@87
|
123 /** The maximum sample rate permitted by the format. The value is
|
cannam@87
|
124 * ((2 ^ 16) - 1) * 10; see <A HREF="../format.html">FLAC format</A>
|
cannam@87
|
125 * as to why.
|
cannam@87
|
126 */
|
cannam@87
|
127 #define FLAC__MAX_SAMPLE_RATE (655350u)
|
cannam@87
|
128
|
cannam@87
|
129 /** The maximum LPC order permitted by the format. */
|
cannam@87
|
130 #define FLAC__MAX_LPC_ORDER (32u)
|
cannam@87
|
131
|
cannam@87
|
132 /** The maximum LPC order permitted by the FLAC subset for sample rates
|
cannam@87
|
133 * up to 48kHz. */
|
cannam@87
|
134 #define FLAC__SUBSET_MAX_LPC_ORDER_48000HZ (12u)
|
cannam@87
|
135
|
cannam@87
|
136 /** The minimum quantized linear predictor coefficient precision
|
cannam@87
|
137 * permitted by the format.
|
cannam@87
|
138 */
|
cannam@87
|
139 #define FLAC__MIN_QLP_COEFF_PRECISION (5u)
|
cannam@87
|
140
|
cannam@87
|
141 /** The maximum quantized linear predictor coefficient precision
|
cannam@87
|
142 * permitted by the format.
|
cannam@87
|
143 */
|
cannam@87
|
144 #define FLAC__MAX_QLP_COEFF_PRECISION (15u)
|
cannam@87
|
145
|
cannam@87
|
146 /** The maximum order of the fixed predictors permitted by the format. */
|
cannam@87
|
147 #define FLAC__MAX_FIXED_ORDER (4u)
|
cannam@87
|
148
|
cannam@87
|
149 /** The maximum Rice partition order permitted by the format. */
|
cannam@87
|
150 #define FLAC__MAX_RICE_PARTITION_ORDER (15u)
|
cannam@87
|
151
|
cannam@87
|
152 /** The maximum Rice partition order permitted by the FLAC Subset. */
|
cannam@87
|
153 #define FLAC__SUBSET_MAX_RICE_PARTITION_ORDER (8u)
|
cannam@87
|
154
|
cannam@87
|
155 /** The version string of the release, stamped onto the libraries and binaries.
|
cannam@87
|
156 *
|
cannam@87
|
157 * \note
|
cannam@87
|
158 * This does not correspond to the shared library version number, which
|
cannam@87
|
159 * is used to determine binary compatibility.
|
cannam@87
|
160 */
|
cannam@87
|
161 extern FLAC_API const char *FLAC__VERSION_STRING;
|
cannam@87
|
162
|
cannam@87
|
163 /** The vendor string inserted by the encoder into the VORBIS_COMMENT block.
|
cannam@87
|
164 * This is a NUL-terminated ASCII string; when inserted into the
|
cannam@87
|
165 * VORBIS_COMMENT the trailing null is stripped.
|
cannam@87
|
166 */
|
cannam@87
|
167 extern FLAC_API const char *FLAC__VENDOR_STRING;
|
cannam@87
|
168
|
cannam@87
|
169 /** The byte string representation of the beginning of a FLAC stream. */
|
cannam@87
|
170 extern FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]; /* = "fLaC" */
|
cannam@87
|
171
|
cannam@87
|
172 /** The 32-bit integer big-endian representation of the beginning of
|
cannam@87
|
173 * a FLAC stream.
|
cannam@87
|
174 */
|
cannam@87
|
175 extern FLAC_API const unsigned FLAC__STREAM_SYNC; /* = 0x664C6143 */
|
cannam@87
|
176
|
cannam@87
|
177 /** The length of the FLAC signature in bits. */
|
cannam@87
|
178 extern FLAC_API const unsigned FLAC__STREAM_SYNC_LEN; /* = 32 bits */
|
cannam@87
|
179
|
cannam@87
|
180 /** The length of the FLAC signature in bytes. */
|
cannam@87
|
181 #define FLAC__STREAM_SYNC_LENGTH (4u)
|
cannam@87
|
182
|
cannam@87
|
183
|
cannam@87
|
184 /*****************************************************************************
|
cannam@87
|
185 *
|
cannam@87
|
186 * Subframe structures
|
cannam@87
|
187 *
|
cannam@87
|
188 *****************************************************************************/
|
cannam@87
|
189
|
cannam@87
|
190 /*****************************************************************************/
|
cannam@87
|
191
|
cannam@87
|
192 /** An enumeration of the available entropy coding methods. */
|
cannam@87
|
193 typedef enum {
|
cannam@87
|
194 FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE = 0,
|
cannam@87
|
195 /**< Residual is coded by partitioning into contexts, each with it's own
|
cannam@87
|
196 * 4-bit Rice parameter. */
|
cannam@87
|
197
|
cannam@87
|
198 FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 = 1
|
cannam@87
|
199 /**< Residual is coded by partitioning into contexts, each with it's own
|
cannam@87
|
200 * 5-bit Rice parameter. */
|
cannam@87
|
201 } FLAC__EntropyCodingMethodType;
|
cannam@87
|
202
|
cannam@87
|
203 /** Maps a FLAC__EntropyCodingMethodType to a C string.
|
cannam@87
|
204 *
|
cannam@87
|
205 * Using a FLAC__EntropyCodingMethodType as the index to this array will
|
cannam@87
|
206 * give the string equivalent. The contents should not be modified.
|
cannam@87
|
207 */
|
cannam@87
|
208 extern FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[];
|
cannam@87
|
209
|
cannam@87
|
210
|
cannam@87
|
211 /** Contents of a Rice partitioned residual
|
cannam@87
|
212 */
|
cannam@87
|
213 typedef struct {
|
cannam@87
|
214
|
cannam@87
|
215 unsigned *parameters;
|
cannam@87
|
216 /**< The Rice parameters for each context. */
|
cannam@87
|
217
|
cannam@87
|
218 unsigned *raw_bits;
|
cannam@87
|
219 /**< Widths for escape-coded partitions. Will be non-zero for escaped
|
cannam@87
|
220 * partitions and zero for unescaped partitions.
|
cannam@87
|
221 */
|
cannam@87
|
222
|
cannam@87
|
223 unsigned capacity_by_order;
|
cannam@87
|
224 /**< The capacity of the \a parameters and \a raw_bits arrays
|
cannam@87
|
225 * specified as an order, i.e. the number of array elements
|
cannam@87
|
226 * allocated is 2 ^ \a capacity_by_order.
|
cannam@87
|
227 */
|
cannam@87
|
228 } FLAC__EntropyCodingMethod_PartitionedRiceContents;
|
cannam@87
|
229
|
cannam@87
|
230 /** Header for a Rice partitioned residual. (c.f. <A HREF="../format.html#partitioned_rice">format specification</A>)
|
cannam@87
|
231 */
|
cannam@87
|
232 typedef struct {
|
cannam@87
|
233
|
cannam@87
|
234 unsigned order;
|
cannam@87
|
235 /**< The partition order, i.e. # of contexts = 2 ^ \a order. */
|
cannam@87
|
236
|
cannam@87
|
237 const FLAC__EntropyCodingMethod_PartitionedRiceContents *contents;
|
cannam@87
|
238 /**< The context's Rice parameters and/or raw bits. */
|
cannam@87
|
239
|
cannam@87
|
240 } FLAC__EntropyCodingMethod_PartitionedRice;
|
cannam@87
|
241
|
cannam@87
|
242 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN; /**< == 4 (bits) */
|
cannam@87
|
243 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN; /**< == 4 (bits) */
|
cannam@87
|
244 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN; /**< == 5 (bits) */
|
cannam@87
|
245 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN; /**< == 5 (bits) */
|
cannam@87
|
246
|
cannam@87
|
247 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
|
cannam@87
|
248 /**< == (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN)-1 */
|
cannam@87
|
249 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER;
|
cannam@87
|
250 /**< == (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN)-1 */
|
cannam@87
|
251
|
cannam@87
|
252 /** Header for the entropy coding method. (c.f. <A HREF="../format.html#residual">format specification</A>)
|
cannam@87
|
253 */
|
cannam@87
|
254 typedef struct {
|
cannam@87
|
255 FLAC__EntropyCodingMethodType type;
|
cannam@87
|
256 union {
|
cannam@87
|
257 FLAC__EntropyCodingMethod_PartitionedRice partitioned_rice;
|
cannam@87
|
258 } data;
|
cannam@87
|
259 } FLAC__EntropyCodingMethod;
|
cannam@87
|
260
|
cannam@87
|
261 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN; /**< == 2 (bits) */
|
cannam@87
|
262
|
cannam@87
|
263 /*****************************************************************************/
|
cannam@87
|
264
|
cannam@87
|
265 /** An enumeration of the available subframe types. */
|
cannam@87
|
266 typedef enum {
|
cannam@87
|
267 FLAC__SUBFRAME_TYPE_CONSTANT = 0, /**< constant signal */
|
cannam@87
|
268 FLAC__SUBFRAME_TYPE_VERBATIM = 1, /**< uncompressed signal */
|
cannam@87
|
269 FLAC__SUBFRAME_TYPE_FIXED = 2, /**< fixed polynomial prediction */
|
cannam@87
|
270 FLAC__SUBFRAME_TYPE_LPC = 3 /**< linear prediction */
|
cannam@87
|
271 } FLAC__SubframeType;
|
cannam@87
|
272
|
cannam@87
|
273 /** Maps a FLAC__SubframeType to a C string.
|
cannam@87
|
274 *
|
cannam@87
|
275 * Using a FLAC__SubframeType as the index to this array will
|
cannam@87
|
276 * give the string equivalent. The contents should not be modified.
|
cannam@87
|
277 */
|
cannam@87
|
278 extern FLAC_API const char * const FLAC__SubframeTypeString[];
|
cannam@87
|
279
|
cannam@87
|
280
|
cannam@87
|
281 /** CONSTANT subframe. (c.f. <A HREF="../format.html#subframe_constant">format specification</A>)
|
cannam@87
|
282 */
|
cannam@87
|
283 typedef struct {
|
cannam@87
|
284 FLAC__int32 value; /**< The constant signal value. */
|
cannam@87
|
285 } FLAC__Subframe_Constant;
|
cannam@87
|
286
|
cannam@87
|
287
|
cannam@87
|
288 /** VERBATIM subframe. (c.f. <A HREF="../format.html#subframe_verbatim">format specification</A>)
|
cannam@87
|
289 */
|
cannam@87
|
290 typedef struct {
|
cannam@87
|
291 const FLAC__int32 *data; /**< A pointer to verbatim signal. */
|
cannam@87
|
292 } FLAC__Subframe_Verbatim;
|
cannam@87
|
293
|
cannam@87
|
294
|
cannam@87
|
295 /** FIXED subframe. (c.f. <A HREF="../format.html#subframe_fixed">format specification</A>)
|
cannam@87
|
296 */
|
cannam@87
|
297 typedef struct {
|
cannam@87
|
298 FLAC__EntropyCodingMethod entropy_coding_method;
|
cannam@87
|
299 /**< The residual coding method. */
|
cannam@87
|
300
|
cannam@87
|
301 unsigned order;
|
cannam@87
|
302 /**< The polynomial order. */
|
cannam@87
|
303
|
cannam@87
|
304 FLAC__int32 warmup[FLAC__MAX_FIXED_ORDER];
|
cannam@87
|
305 /**< Warmup samples to prime the predictor, length == order. */
|
cannam@87
|
306
|
cannam@87
|
307 const FLAC__int32 *residual;
|
cannam@87
|
308 /**< The residual signal, length == (blocksize minus order) samples. */
|
cannam@87
|
309 } FLAC__Subframe_Fixed;
|
cannam@87
|
310
|
cannam@87
|
311
|
cannam@87
|
312 /** LPC subframe. (c.f. <A HREF="../format.html#subframe_lpc">format specification</A>)
|
cannam@87
|
313 */
|
cannam@87
|
314 typedef struct {
|
cannam@87
|
315 FLAC__EntropyCodingMethod entropy_coding_method;
|
cannam@87
|
316 /**< The residual coding method. */
|
cannam@87
|
317
|
cannam@87
|
318 unsigned order;
|
cannam@87
|
319 /**< The FIR order. */
|
cannam@87
|
320
|
cannam@87
|
321 unsigned qlp_coeff_precision;
|
cannam@87
|
322 /**< Quantized FIR filter coefficient precision in bits. */
|
cannam@87
|
323
|
cannam@87
|
324 int quantization_level;
|
cannam@87
|
325 /**< The qlp coeff shift needed. */
|
cannam@87
|
326
|
cannam@87
|
327 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
|
cannam@87
|
328 /**< FIR filter coefficients. */
|
cannam@87
|
329
|
cannam@87
|
330 FLAC__int32 warmup[FLAC__MAX_LPC_ORDER];
|
cannam@87
|
331 /**< Warmup samples to prime the predictor, length == order. */
|
cannam@87
|
332
|
cannam@87
|
333 const FLAC__int32 *residual;
|
cannam@87
|
334 /**< The residual signal, length == (blocksize minus order) samples. */
|
cannam@87
|
335 } FLAC__Subframe_LPC;
|
cannam@87
|
336
|
cannam@87
|
337 extern FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN; /**< == 4 (bits) */
|
cannam@87
|
338 extern FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN; /**< == 5 (bits) */
|
cannam@87
|
339
|
cannam@87
|
340
|
cannam@87
|
341 /** FLAC subframe structure. (c.f. <A HREF="../format.html#subframe">format specification</A>)
|
cannam@87
|
342 */
|
cannam@87
|
343 typedef struct {
|
cannam@87
|
344 FLAC__SubframeType type;
|
cannam@87
|
345 union {
|
cannam@87
|
346 FLAC__Subframe_Constant constant;
|
cannam@87
|
347 FLAC__Subframe_Fixed fixed;
|
cannam@87
|
348 FLAC__Subframe_LPC lpc;
|
cannam@87
|
349 FLAC__Subframe_Verbatim verbatim;
|
cannam@87
|
350 } data;
|
cannam@87
|
351 unsigned wasted_bits;
|
cannam@87
|
352 } FLAC__Subframe;
|
cannam@87
|
353
|
cannam@87
|
354 /** == 1 (bit)
|
cannam@87
|
355 *
|
cannam@87
|
356 * This used to be a zero-padding bit (hence the name
|
cannam@87
|
357 * FLAC__SUBFRAME_ZERO_PAD_LEN) but is now a reserved bit. It still has a
|
cannam@87
|
358 * mandatory value of \c 0 but in the future may take on the value \c 0 or \c 1
|
cannam@87
|
359 * to mean something else.
|
cannam@87
|
360 */
|
cannam@87
|
361 extern FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN;
|
cannam@87
|
362 extern FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN; /**< == 6 (bits) */
|
cannam@87
|
363 extern FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN; /**< == 1 (bit) */
|
cannam@87
|
364
|
cannam@87
|
365 extern FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK; /**< = 0x00 */
|
cannam@87
|
366 extern FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK; /**< = 0x02 */
|
cannam@87
|
367 extern FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK; /**< = 0x10 */
|
cannam@87
|
368 extern FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK; /**< = 0x40 */
|
cannam@87
|
369
|
cannam@87
|
370 /*****************************************************************************/
|
cannam@87
|
371
|
cannam@87
|
372
|
cannam@87
|
373 /*****************************************************************************
|
cannam@87
|
374 *
|
cannam@87
|
375 * Frame structures
|
cannam@87
|
376 *
|
cannam@87
|
377 *****************************************************************************/
|
cannam@87
|
378
|
cannam@87
|
379 /** An enumeration of the available channel assignments. */
|
cannam@87
|
380 typedef enum {
|
cannam@87
|
381 FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT = 0, /**< independent channels */
|
cannam@87
|
382 FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE = 1, /**< left+side stereo */
|
cannam@87
|
383 FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE = 2, /**< right+side stereo */
|
cannam@87
|
384 FLAC__CHANNEL_ASSIGNMENT_MID_SIDE = 3 /**< mid+side stereo */
|
cannam@87
|
385 } FLAC__ChannelAssignment;
|
cannam@87
|
386
|
cannam@87
|
387 /** Maps a FLAC__ChannelAssignment to a C string.
|
cannam@87
|
388 *
|
cannam@87
|
389 * Using a FLAC__ChannelAssignment as the index to this array will
|
cannam@87
|
390 * give the string equivalent. The contents should not be modified.
|
cannam@87
|
391 */
|
cannam@87
|
392 extern FLAC_API const char * const FLAC__ChannelAssignmentString[];
|
cannam@87
|
393
|
cannam@87
|
394 /** An enumeration of the possible frame numbering methods. */
|
cannam@87
|
395 typedef enum {
|
cannam@87
|
396 FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER, /**< number contains the frame number */
|
cannam@87
|
397 FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER /**< number contains the sample number of first sample in frame */
|
cannam@87
|
398 } FLAC__FrameNumberType;
|
cannam@87
|
399
|
cannam@87
|
400 /** Maps a FLAC__FrameNumberType to a C string.
|
cannam@87
|
401 *
|
cannam@87
|
402 * Using a FLAC__FrameNumberType as the index to this array will
|
cannam@87
|
403 * give the string equivalent. The contents should not be modified.
|
cannam@87
|
404 */
|
cannam@87
|
405 extern FLAC_API const char * const FLAC__FrameNumberTypeString[];
|
cannam@87
|
406
|
cannam@87
|
407
|
cannam@87
|
408 /** FLAC frame header structure. (c.f. <A HREF="../format.html#frame_header">format specification</A>)
|
cannam@87
|
409 */
|
cannam@87
|
410 typedef struct {
|
cannam@87
|
411 unsigned blocksize;
|
cannam@87
|
412 /**< The number of samples per subframe. */
|
cannam@87
|
413
|
cannam@87
|
414 unsigned sample_rate;
|
cannam@87
|
415 /**< The sample rate in Hz. */
|
cannam@87
|
416
|
cannam@87
|
417 unsigned channels;
|
cannam@87
|
418 /**< The number of channels (== number of subframes). */
|
cannam@87
|
419
|
cannam@87
|
420 FLAC__ChannelAssignment channel_assignment;
|
cannam@87
|
421 /**< The channel assignment for the frame. */
|
cannam@87
|
422
|
cannam@87
|
423 unsigned bits_per_sample;
|
cannam@87
|
424 /**< The sample resolution. */
|
cannam@87
|
425
|
cannam@87
|
426 FLAC__FrameNumberType number_type;
|
cannam@87
|
427 /**< The numbering scheme used for the frame. As a convenience, the
|
cannam@87
|
428 * decoder will always convert a frame number to a sample number because
|
cannam@87
|
429 * the rules are complex. */
|
cannam@87
|
430
|
cannam@87
|
431 union {
|
cannam@87
|
432 FLAC__uint32 frame_number;
|
cannam@87
|
433 FLAC__uint64 sample_number;
|
cannam@87
|
434 } number;
|
cannam@87
|
435 /**< The frame number or sample number of first sample in frame;
|
cannam@87
|
436 * use the \a number_type value to determine which to use. */
|
cannam@87
|
437
|
cannam@87
|
438 FLAC__uint8 crc;
|
cannam@87
|
439 /**< CRC-8 (polynomial = x^8 + x^2 + x^1 + x^0, initialized with 0)
|
cannam@87
|
440 * of the raw frame header bytes, meaning everything before the CRC byte
|
cannam@87
|
441 * including the sync code.
|
cannam@87
|
442 */
|
cannam@87
|
443 } FLAC__FrameHeader;
|
cannam@87
|
444
|
cannam@87
|
445 extern FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC; /**< == 0x3ffe; the frame header sync code */
|
cannam@87
|
446 extern FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN; /**< == 14 (bits) */
|
cannam@87
|
447 extern FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN; /**< == 1 (bits) */
|
cannam@87
|
448 extern FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN; /**< == 1 (bits) */
|
cannam@87
|
449 extern FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN; /**< == 4 (bits) */
|
cannam@87
|
450 extern FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN; /**< == 4 (bits) */
|
cannam@87
|
451 extern FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN; /**< == 4 (bits) */
|
cannam@87
|
452 extern FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN; /**< == 3 (bits) */
|
cannam@87
|
453 extern FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN; /**< == 1 (bit) */
|
cannam@87
|
454 extern FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN; /**< == 8 (bits) */
|
cannam@87
|
455
|
cannam@87
|
456
|
cannam@87
|
457 /** FLAC frame footer structure. (c.f. <A HREF="../format.html#frame_footer">format specification</A>)
|
cannam@87
|
458 */
|
cannam@87
|
459 typedef struct {
|
cannam@87
|
460 FLAC__uint16 crc;
|
cannam@87
|
461 /**< CRC-16 (polynomial = x^16 + x^15 + x^2 + x^0, initialized with
|
cannam@87
|
462 * 0) of the bytes before the crc, back to and including the frame header
|
cannam@87
|
463 * sync code.
|
cannam@87
|
464 */
|
cannam@87
|
465 } FLAC__FrameFooter;
|
cannam@87
|
466
|
cannam@87
|
467 extern FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN; /**< == 16 (bits) */
|
cannam@87
|
468
|
cannam@87
|
469
|
cannam@87
|
470 /** FLAC frame structure. (c.f. <A HREF="../format.html#frame">format specification</A>)
|
cannam@87
|
471 */
|
cannam@87
|
472 typedef struct {
|
cannam@87
|
473 FLAC__FrameHeader header;
|
cannam@87
|
474 FLAC__Subframe subframes[FLAC__MAX_CHANNELS];
|
cannam@87
|
475 FLAC__FrameFooter footer;
|
cannam@87
|
476 } FLAC__Frame;
|
cannam@87
|
477
|
cannam@87
|
478 /*****************************************************************************/
|
cannam@87
|
479
|
cannam@87
|
480
|
cannam@87
|
481 /*****************************************************************************
|
cannam@87
|
482 *
|
cannam@87
|
483 * Meta-data structures
|
cannam@87
|
484 *
|
cannam@87
|
485 *****************************************************************************/
|
cannam@87
|
486
|
cannam@87
|
487 /** An enumeration of the available metadata block types. */
|
cannam@87
|
488 typedef enum {
|
cannam@87
|
489
|
cannam@87
|
490 FLAC__METADATA_TYPE_STREAMINFO = 0,
|
cannam@87
|
491 /**< <A HREF="../format.html#metadata_block_streaminfo">STREAMINFO</A> block */
|
cannam@87
|
492
|
cannam@87
|
493 FLAC__METADATA_TYPE_PADDING = 1,
|
cannam@87
|
494 /**< <A HREF="../format.html#metadata_block_padding">PADDING</A> block */
|
cannam@87
|
495
|
cannam@87
|
496 FLAC__METADATA_TYPE_APPLICATION = 2,
|
cannam@87
|
497 /**< <A HREF="../format.html#metadata_block_application">APPLICATION</A> block */
|
cannam@87
|
498
|
cannam@87
|
499 FLAC__METADATA_TYPE_SEEKTABLE = 3,
|
cannam@87
|
500 /**< <A HREF="../format.html#metadata_block_seektable">SEEKTABLE</A> block */
|
cannam@87
|
501
|
cannam@87
|
502 FLAC__METADATA_TYPE_VORBIS_COMMENT = 4,
|
cannam@87
|
503 /**< <A HREF="../format.html#metadata_block_vorbis_comment">VORBISCOMMENT</A> block (a.k.a. FLAC tags) */
|
cannam@87
|
504
|
cannam@87
|
505 FLAC__METADATA_TYPE_CUESHEET = 5,
|
cannam@87
|
506 /**< <A HREF="../format.html#metadata_block_cuesheet">CUESHEET</A> block */
|
cannam@87
|
507
|
cannam@87
|
508 FLAC__METADATA_TYPE_PICTURE = 6,
|
cannam@87
|
509 /**< <A HREF="../format.html#metadata_block_picture">PICTURE</A> block */
|
cannam@87
|
510
|
cannam@87
|
511 FLAC__METADATA_TYPE_UNDEFINED = 7
|
cannam@87
|
512 /**< marker to denote beginning of undefined type range; this number will increase as new metadata types are added */
|
cannam@87
|
513
|
cannam@87
|
514 } FLAC__MetadataType;
|
cannam@87
|
515
|
cannam@87
|
516 /** Maps a FLAC__MetadataType to a C string.
|
cannam@87
|
517 *
|
cannam@87
|
518 * Using a FLAC__MetadataType as the index to this array will
|
cannam@87
|
519 * give the string equivalent. The contents should not be modified.
|
cannam@87
|
520 */
|
cannam@87
|
521 extern FLAC_API const char * const FLAC__MetadataTypeString[];
|
cannam@87
|
522
|
cannam@87
|
523
|
cannam@87
|
524 /** FLAC STREAMINFO structure. (c.f. <A HREF="../format.html#metadata_block_streaminfo">format specification</A>)
|
cannam@87
|
525 */
|
cannam@87
|
526 typedef struct {
|
cannam@87
|
527 unsigned min_blocksize, max_blocksize;
|
cannam@87
|
528 unsigned min_framesize, max_framesize;
|
cannam@87
|
529 unsigned sample_rate;
|
cannam@87
|
530 unsigned channels;
|
cannam@87
|
531 unsigned bits_per_sample;
|
cannam@87
|
532 FLAC__uint64 total_samples;
|
cannam@87
|
533 FLAC__byte md5sum[16];
|
cannam@87
|
534 } FLAC__StreamMetadata_StreamInfo;
|
cannam@87
|
535
|
cannam@87
|
536 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN; /**< == 16 (bits) */
|
cannam@87
|
537 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN; /**< == 16 (bits) */
|
cannam@87
|
538 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN; /**< == 24 (bits) */
|
cannam@87
|
539 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN; /**< == 24 (bits) */
|
cannam@87
|
540 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN; /**< == 20 (bits) */
|
cannam@87
|
541 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN; /**< == 3 (bits) */
|
cannam@87
|
542 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN; /**< == 5 (bits) */
|
cannam@87
|
543 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN; /**< == 36 (bits) */
|
cannam@87
|
544 extern FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN; /**< == 128 (bits) */
|
cannam@87
|
545
|
cannam@87
|
546 /** The total stream length of the STREAMINFO block in bytes. */
|
cannam@87
|
547 #define FLAC__STREAM_METADATA_STREAMINFO_LENGTH (34u)
|
cannam@87
|
548
|
cannam@87
|
549 /** FLAC PADDING structure. (c.f. <A HREF="../format.html#metadata_block_padding">format specification</A>)
|
cannam@87
|
550 */
|
cannam@87
|
551 typedef struct {
|
cannam@87
|
552 int dummy;
|
cannam@87
|
553 /**< Conceptually this is an empty struct since we don't store the
|
cannam@87
|
554 * padding bytes. Empty structs are not allowed by some C compilers,
|
cannam@87
|
555 * hence the dummy.
|
cannam@87
|
556 */
|
cannam@87
|
557 } FLAC__StreamMetadata_Padding;
|
cannam@87
|
558
|
cannam@87
|
559
|
cannam@87
|
560 /** FLAC APPLICATION structure. (c.f. <A HREF="../format.html#metadata_block_application">format specification</A>)
|
cannam@87
|
561 */
|
cannam@87
|
562 typedef struct {
|
cannam@87
|
563 FLAC__byte id[4];
|
cannam@87
|
564 FLAC__byte *data;
|
cannam@87
|
565 } FLAC__StreamMetadata_Application;
|
cannam@87
|
566
|
cannam@87
|
567 extern FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN; /**< == 32 (bits) */
|
cannam@87
|
568
|
cannam@87
|
569 /** SeekPoint structure used in SEEKTABLE blocks. (c.f. <A HREF="../format.html#seekpoint">format specification</A>)
|
cannam@87
|
570 */
|
cannam@87
|
571 typedef struct {
|
cannam@87
|
572 FLAC__uint64 sample_number;
|
cannam@87
|
573 /**< The sample number of the target frame. */
|
cannam@87
|
574
|
cannam@87
|
575 FLAC__uint64 stream_offset;
|
cannam@87
|
576 /**< The offset, in bytes, of the target frame with respect to
|
cannam@87
|
577 * beginning of the first frame. */
|
cannam@87
|
578
|
cannam@87
|
579 unsigned frame_samples;
|
cannam@87
|
580 /**< The number of samples in the target frame. */
|
cannam@87
|
581 } FLAC__StreamMetadata_SeekPoint;
|
cannam@87
|
582
|
cannam@87
|
583 extern FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN; /**< == 64 (bits) */
|
cannam@87
|
584 extern FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN; /**< == 64 (bits) */
|
cannam@87
|
585 extern FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN; /**< == 16 (bits) */
|
cannam@87
|
586
|
cannam@87
|
587 /** The total stream length of a seek point in bytes. */
|
cannam@87
|
588 #define FLAC__STREAM_METADATA_SEEKPOINT_LENGTH (18u)
|
cannam@87
|
589
|
cannam@87
|
590 /** The value used in the \a sample_number field of
|
cannam@87
|
591 * FLAC__StreamMetadataSeekPoint used to indicate a placeholder
|
cannam@87
|
592 * point (== 0xffffffffffffffff).
|
cannam@87
|
593 */
|
cannam@87
|
594 extern FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
|
cannam@87
|
595
|
cannam@87
|
596
|
cannam@87
|
597 /** FLAC SEEKTABLE structure. (c.f. <A HREF="../format.html#metadata_block_seektable">format specification</A>)
|
cannam@87
|
598 *
|
cannam@87
|
599 * \note From the format specification:
|
cannam@87
|
600 * - The seek points must be sorted by ascending sample number.
|
cannam@87
|
601 * - Each seek point's sample number must be the first sample of the
|
cannam@87
|
602 * target frame.
|
cannam@87
|
603 * - Each seek point's sample number must be unique within the table.
|
cannam@87
|
604 * - Existence of a SEEKTABLE block implies a correct setting of
|
cannam@87
|
605 * total_samples in the stream_info block.
|
cannam@87
|
606 * - Behavior is undefined when more than one SEEKTABLE block is
|
cannam@87
|
607 * present in a stream.
|
cannam@87
|
608 */
|
cannam@87
|
609 typedef struct {
|
cannam@87
|
610 unsigned num_points;
|
cannam@87
|
611 FLAC__StreamMetadata_SeekPoint *points;
|
cannam@87
|
612 } FLAC__StreamMetadata_SeekTable;
|
cannam@87
|
613
|
cannam@87
|
614
|
cannam@87
|
615 /** Vorbis comment entry structure used in VORBIS_COMMENT blocks. (c.f. <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>)
|
cannam@87
|
616 *
|
cannam@87
|
617 * For convenience, the APIs maintain a trailing NUL character at the end of
|
cannam@87
|
618 * \a entry which is not counted toward \a length, i.e.
|
cannam@87
|
619 * \code strlen(entry) == length \endcode
|
cannam@87
|
620 */
|
cannam@87
|
621 typedef struct {
|
cannam@87
|
622 FLAC__uint32 length;
|
cannam@87
|
623 FLAC__byte *entry;
|
cannam@87
|
624 } FLAC__StreamMetadata_VorbisComment_Entry;
|
cannam@87
|
625
|
cannam@87
|
626 extern FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN; /**< == 32 (bits) */
|
cannam@87
|
627
|
cannam@87
|
628
|
cannam@87
|
629 /** FLAC VORBIS_COMMENT structure. (c.f. <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>)
|
cannam@87
|
630 */
|
cannam@87
|
631 typedef struct {
|
cannam@87
|
632 FLAC__StreamMetadata_VorbisComment_Entry vendor_string;
|
cannam@87
|
633 FLAC__uint32 num_comments;
|
cannam@87
|
634 FLAC__StreamMetadata_VorbisComment_Entry *comments;
|
cannam@87
|
635 } FLAC__StreamMetadata_VorbisComment;
|
cannam@87
|
636
|
cannam@87
|
637 extern FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN; /**< == 32 (bits) */
|
cannam@87
|
638
|
cannam@87
|
639
|
cannam@87
|
640 /** FLAC CUESHEET track index structure. (See the
|
cannam@87
|
641 * <A HREF="../format.html#cuesheet_track_index">format specification</A> for
|
cannam@87
|
642 * the full description of each field.)
|
cannam@87
|
643 */
|
cannam@87
|
644 typedef struct {
|
cannam@87
|
645 FLAC__uint64 offset;
|
cannam@87
|
646 /**< Offset in samples, relative to the track offset, of the index
|
cannam@87
|
647 * point.
|
cannam@87
|
648 */
|
cannam@87
|
649
|
cannam@87
|
650 FLAC__byte number;
|
cannam@87
|
651 /**< The index point number. */
|
cannam@87
|
652 } FLAC__StreamMetadata_CueSheet_Index;
|
cannam@87
|
653
|
cannam@87
|
654 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN; /**< == 64 (bits) */
|
cannam@87
|
655 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN; /**< == 8 (bits) */
|
cannam@87
|
656 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN; /**< == 3*8 (bits) */
|
cannam@87
|
657
|
cannam@87
|
658
|
cannam@87
|
659 /** FLAC CUESHEET track structure. (See the
|
cannam@87
|
660 * <A HREF="../format.html#cuesheet_track">format specification</A> for
|
cannam@87
|
661 * the full description of each field.)
|
cannam@87
|
662 */
|
cannam@87
|
663 typedef struct {
|
cannam@87
|
664 FLAC__uint64 offset;
|
cannam@87
|
665 /**< Track offset in samples, relative to the beginning of the FLAC audio stream. */
|
cannam@87
|
666
|
cannam@87
|
667 FLAC__byte number;
|
cannam@87
|
668 /**< The track number. */
|
cannam@87
|
669
|
cannam@87
|
670 char isrc[13];
|
cannam@87
|
671 /**< Track ISRC. This is a 12-digit alphanumeric code plus a trailing \c NUL byte */
|
cannam@87
|
672
|
cannam@87
|
673 unsigned type:1;
|
cannam@87
|
674 /**< The track type: 0 for audio, 1 for non-audio. */
|
cannam@87
|
675
|
cannam@87
|
676 unsigned pre_emphasis:1;
|
cannam@87
|
677 /**< The pre-emphasis flag: 0 for no pre-emphasis, 1 for pre-emphasis. */
|
cannam@87
|
678
|
cannam@87
|
679 FLAC__byte num_indices;
|
cannam@87
|
680 /**< The number of track index points. */
|
cannam@87
|
681
|
cannam@87
|
682 FLAC__StreamMetadata_CueSheet_Index *indices;
|
cannam@87
|
683 /**< NULL if num_indices == 0, else pointer to array of index points. */
|
cannam@87
|
684
|
cannam@87
|
685 } FLAC__StreamMetadata_CueSheet_Track;
|
cannam@87
|
686
|
cannam@87
|
687 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN; /**< == 64 (bits) */
|
cannam@87
|
688 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN; /**< == 8 (bits) */
|
cannam@87
|
689 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN; /**< == 12*8 (bits) */
|
cannam@87
|
690 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN; /**< == 1 (bit) */
|
cannam@87
|
691 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN; /**< == 1 (bit) */
|
cannam@87
|
692 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN; /**< == 6+13*8 (bits) */
|
cannam@87
|
693 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN; /**< == 8 (bits) */
|
cannam@87
|
694
|
cannam@87
|
695
|
cannam@87
|
696 /** FLAC CUESHEET structure. (See the
|
cannam@87
|
697 * <A HREF="../format.html#metadata_block_cuesheet">format specification</A>
|
cannam@87
|
698 * for the full description of each field.)
|
cannam@87
|
699 */
|
cannam@87
|
700 typedef struct {
|
cannam@87
|
701 char media_catalog_number[129];
|
cannam@87
|
702 /**< Media catalog number, in ASCII printable characters 0x20-0x7e. In
|
cannam@87
|
703 * general, the media catalog number may be 0 to 128 bytes long; any
|
cannam@87
|
704 * unused characters should be right-padded with NUL characters.
|
cannam@87
|
705 */
|
cannam@87
|
706
|
cannam@87
|
707 FLAC__uint64 lead_in;
|
cannam@87
|
708 /**< The number of lead-in samples. */
|
cannam@87
|
709
|
cannam@87
|
710 FLAC__bool is_cd;
|
cannam@87
|
711 /**< \c true if CUESHEET corresponds to a Compact Disc, else \c false. */
|
cannam@87
|
712
|
cannam@87
|
713 unsigned num_tracks;
|
cannam@87
|
714 /**< The number of tracks. */
|
cannam@87
|
715
|
cannam@87
|
716 FLAC__StreamMetadata_CueSheet_Track *tracks;
|
cannam@87
|
717 /**< NULL if num_tracks == 0, else pointer to array of tracks. */
|
cannam@87
|
718
|
cannam@87
|
719 } FLAC__StreamMetadata_CueSheet;
|
cannam@87
|
720
|
cannam@87
|
721 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN; /**< == 128*8 (bits) */
|
cannam@87
|
722 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN; /**< == 64 (bits) */
|
cannam@87
|
723 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN; /**< == 1 (bit) */
|
cannam@87
|
724 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN; /**< == 7+258*8 (bits) */
|
cannam@87
|
725 extern FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN; /**< == 8 (bits) */
|
cannam@87
|
726
|
cannam@87
|
727
|
cannam@87
|
728 /** An enumeration of the PICTURE types (see FLAC__StreamMetadataPicture and id3 v2.4 APIC tag). */
|
cannam@87
|
729 typedef enum {
|
cannam@87
|
730 FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER = 0, /**< Other */
|
cannam@87
|
731 FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD = 1, /**< 32x32 pixels 'file icon' (PNG only) */
|
cannam@87
|
732 FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON = 2, /**< Other file icon */
|
cannam@87
|
733 FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER = 3, /**< Cover (front) */
|
cannam@87
|
734 FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER = 4, /**< Cover (back) */
|
cannam@87
|
735 FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE = 5, /**< Leaflet page */
|
cannam@87
|
736 FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA = 6, /**< Media (e.g. label side of CD) */
|
cannam@87
|
737 FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST = 7, /**< Lead artist/lead performer/soloist */
|
cannam@87
|
738 FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST = 8, /**< Artist/performer */
|
cannam@87
|
739 FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR = 9, /**< Conductor */
|
cannam@87
|
740 FLAC__STREAM_METADATA_PICTURE_TYPE_BAND = 10, /**< Band/Orchestra */
|
cannam@87
|
741 FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER = 11, /**< Composer */
|
cannam@87
|
742 FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST = 12, /**< Lyricist/text writer */
|
cannam@87
|
743 FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION = 13, /**< Recording Location */
|
cannam@87
|
744 FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING = 14, /**< During recording */
|
cannam@87
|
745 FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE = 15, /**< During performance */
|
cannam@87
|
746 FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE = 16, /**< Movie/video screen capture */
|
cannam@87
|
747 FLAC__STREAM_METADATA_PICTURE_TYPE_FISH = 17, /**< A bright coloured fish */
|
cannam@87
|
748 FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION = 18, /**< Illustration */
|
cannam@87
|
749 FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE = 19, /**< Band/artist logotype */
|
cannam@87
|
750 FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE = 20, /**< Publisher/Studio logotype */
|
cannam@87
|
751 FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED
|
cannam@87
|
752 } FLAC__StreamMetadata_Picture_Type;
|
cannam@87
|
753
|
cannam@87
|
754 /** Maps a FLAC__StreamMetadata_Picture_Type to a C string.
|
cannam@87
|
755 *
|
cannam@87
|
756 * Using a FLAC__StreamMetadata_Picture_Type as the index to this array
|
cannam@87
|
757 * will give the string equivalent. The contents should not be
|
cannam@87
|
758 * modified.
|
cannam@87
|
759 */
|
cannam@87
|
760 extern FLAC_API const char * const FLAC__StreamMetadata_Picture_TypeString[];
|
cannam@87
|
761
|
cannam@87
|
762 /** FLAC PICTURE structure. (See the
|
cannam@87
|
763 * <A HREF="../format.html#metadata_block_picture">format specification</A>
|
cannam@87
|
764 * for the full description of each field.)
|
cannam@87
|
765 */
|
cannam@87
|
766 typedef struct {
|
cannam@87
|
767 FLAC__StreamMetadata_Picture_Type type;
|
cannam@87
|
768 /**< The kind of picture stored. */
|
cannam@87
|
769
|
cannam@87
|
770 char *mime_type;
|
cannam@87
|
771 /**< Picture data's MIME type, in ASCII printable characters
|
cannam@87
|
772 * 0x20-0x7e, NUL terminated. For best compatibility with players,
|
cannam@87
|
773 * use picture data of MIME type \c image/jpeg or \c image/png. A
|
cannam@87
|
774 * MIME type of '-->' is also allowed, in which case the picture
|
cannam@87
|
775 * data should be a complete URL. In file storage, the MIME type is
|
cannam@87
|
776 * stored as a 32-bit length followed by the ASCII string with no NUL
|
cannam@87
|
777 * terminator, but is converted to a plain C string in this structure
|
cannam@87
|
778 * for convenience.
|
cannam@87
|
779 */
|
cannam@87
|
780
|
cannam@87
|
781 FLAC__byte *description;
|
cannam@87
|
782 /**< Picture's description in UTF-8, NUL terminated. In file storage,
|
cannam@87
|
783 * the description is stored as a 32-bit length followed by the UTF-8
|
cannam@87
|
784 * string with no NUL terminator, but is converted to a plain C string
|
cannam@87
|
785 * in this structure for convenience.
|
cannam@87
|
786 */
|
cannam@87
|
787
|
cannam@87
|
788 FLAC__uint32 width;
|
cannam@87
|
789 /**< Picture's width in pixels. */
|
cannam@87
|
790
|
cannam@87
|
791 FLAC__uint32 height;
|
cannam@87
|
792 /**< Picture's height in pixels. */
|
cannam@87
|
793
|
cannam@87
|
794 FLAC__uint32 depth;
|
cannam@87
|
795 /**< Picture's color depth in bits-per-pixel. */
|
cannam@87
|
796
|
cannam@87
|
797 FLAC__uint32 colors;
|
cannam@87
|
798 /**< For indexed palettes (like GIF), picture's number of colors (the
|
cannam@87
|
799 * number of palette entries), or \c 0 for non-indexed (i.e. 2^depth).
|
cannam@87
|
800 */
|
cannam@87
|
801
|
cannam@87
|
802 FLAC__uint32 data_length;
|
cannam@87
|
803 /**< Length of binary picture data in bytes. */
|
cannam@87
|
804
|
cannam@87
|
805 FLAC__byte *data;
|
cannam@87
|
806 /**< Binary picture data. */
|
cannam@87
|
807
|
cannam@87
|
808 } FLAC__StreamMetadata_Picture;
|
cannam@87
|
809
|
cannam@87
|
810 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_TYPE_LEN; /**< == 32 (bits) */
|
cannam@87
|
811 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN; /**< == 32 (bits) */
|
cannam@87
|
812 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN; /**< == 32 (bits) */
|
cannam@87
|
813 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN; /**< == 32 (bits) */
|
cannam@87
|
814 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN; /**< == 32 (bits) */
|
cannam@87
|
815 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN; /**< == 32 (bits) */
|
cannam@87
|
816 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_COLORS_LEN; /**< == 32 (bits) */
|
cannam@87
|
817 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN; /**< == 32 (bits) */
|
cannam@87
|
818
|
cannam@87
|
819
|
cannam@87
|
820 /** Structure that is used when a metadata block of unknown type is loaded.
|
cannam@87
|
821 * The contents are opaque. The structure is used only internally to
|
cannam@87
|
822 * correctly handle unknown metadata.
|
cannam@87
|
823 */
|
cannam@87
|
824 typedef struct {
|
cannam@87
|
825 FLAC__byte *data;
|
cannam@87
|
826 } FLAC__StreamMetadata_Unknown;
|
cannam@87
|
827
|
cannam@87
|
828
|
cannam@87
|
829 /** FLAC metadata block structure. (c.f. <A HREF="../format.html#metadata_block">format specification</A>)
|
cannam@87
|
830 */
|
cannam@87
|
831 typedef struct {
|
cannam@87
|
832 FLAC__MetadataType type;
|
cannam@87
|
833 /**< The type of the metadata block; used determine which member of the
|
cannam@87
|
834 * \a data union to dereference. If type >= FLAC__METADATA_TYPE_UNDEFINED
|
cannam@87
|
835 * then \a data.unknown must be used. */
|
cannam@87
|
836
|
cannam@87
|
837 FLAC__bool is_last;
|
cannam@87
|
838 /**< \c true if this metadata block is the last, else \a false */
|
cannam@87
|
839
|
cannam@87
|
840 unsigned length;
|
cannam@87
|
841 /**< Length, in bytes, of the block data as it appears in the stream. */
|
cannam@87
|
842
|
cannam@87
|
843 union {
|
cannam@87
|
844 FLAC__StreamMetadata_StreamInfo stream_info;
|
cannam@87
|
845 FLAC__StreamMetadata_Padding padding;
|
cannam@87
|
846 FLAC__StreamMetadata_Application application;
|
cannam@87
|
847 FLAC__StreamMetadata_SeekTable seek_table;
|
cannam@87
|
848 FLAC__StreamMetadata_VorbisComment vorbis_comment;
|
cannam@87
|
849 FLAC__StreamMetadata_CueSheet cue_sheet;
|
cannam@87
|
850 FLAC__StreamMetadata_Picture picture;
|
cannam@87
|
851 FLAC__StreamMetadata_Unknown unknown;
|
cannam@87
|
852 } data;
|
cannam@87
|
853 /**< Polymorphic block data; use the \a type value to determine which
|
cannam@87
|
854 * to use. */
|
cannam@87
|
855 } FLAC__StreamMetadata;
|
cannam@87
|
856
|
cannam@87
|
857 extern FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN; /**< == 1 (bit) */
|
cannam@87
|
858 extern FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN; /**< == 7 (bits) */
|
cannam@87
|
859 extern FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN; /**< == 24 (bits) */
|
cannam@87
|
860
|
cannam@87
|
861 /** The total stream length of a metadata block header in bytes. */
|
cannam@87
|
862 #define FLAC__STREAM_METADATA_HEADER_LENGTH (4u)
|
cannam@87
|
863
|
cannam@87
|
864 /*****************************************************************************/
|
cannam@87
|
865
|
cannam@87
|
866
|
cannam@87
|
867 /*****************************************************************************
|
cannam@87
|
868 *
|
cannam@87
|
869 * Utility functions
|
cannam@87
|
870 *
|
cannam@87
|
871 *****************************************************************************/
|
cannam@87
|
872
|
cannam@87
|
873 /** Tests that a sample rate is valid for FLAC.
|
cannam@87
|
874 *
|
cannam@87
|
875 * \param sample_rate The sample rate to test for compliance.
|
cannam@87
|
876 * \retval FLAC__bool
|
cannam@87
|
877 * \c true if the given sample rate conforms to the specification, else
|
cannam@87
|
878 * \c false.
|
cannam@87
|
879 */
|
cannam@87
|
880 FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate);
|
cannam@87
|
881
|
cannam@87
|
882 /** Tests that a sample rate is valid for the FLAC subset. The subset rules
|
cannam@87
|
883 * for valid sample rates are slightly more complex since the rate has to
|
cannam@87
|
884 * be expressible completely in the frame header.
|
cannam@87
|
885 *
|
cannam@87
|
886 * \param sample_rate The sample rate to test for compliance.
|
cannam@87
|
887 * \retval FLAC__bool
|
cannam@87
|
888 * \c true if the given sample rate conforms to the specification for the
|
cannam@87
|
889 * subset, else \c false.
|
cannam@87
|
890 */
|
cannam@87
|
891 FLAC_API FLAC__bool FLAC__format_sample_rate_is_subset(unsigned sample_rate);
|
cannam@87
|
892
|
cannam@87
|
893 /** Check a Vorbis comment entry name to see if it conforms to the Vorbis
|
cannam@87
|
894 * comment specification.
|
cannam@87
|
895 *
|
cannam@87
|
896 * Vorbis comment names must be composed only of characters from
|
cannam@87
|
897 * [0x20-0x3C,0x3E-0x7D].
|
cannam@87
|
898 *
|
cannam@87
|
899 * \param name A NUL-terminated string to be checked.
|
cannam@87
|
900 * \assert
|
cannam@87
|
901 * \code name != NULL \endcode
|
cannam@87
|
902 * \retval FLAC__bool
|
cannam@87
|
903 * \c false if entry name is illegal, else \c true.
|
cannam@87
|
904 */
|
cannam@87
|
905 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name);
|
cannam@87
|
906
|
cannam@87
|
907 /** Check a Vorbis comment entry value to see if it conforms to the Vorbis
|
cannam@87
|
908 * comment specification.
|
cannam@87
|
909 *
|
cannam@87
|
910 * Vorbis comment values must be valid UTF-8 sequences.
|
cannam@87
|
911 *
|
cannam@87
|
912 * \param value A string to be checked.
|
cannam@87
|
913 * \param length A the length of \a value in bytes. May be
|
cannam@87
|
914 * \c (unsigned)(-1) to indicate that \a value is a plain
|
cannam@87
|
915 * UTF-8 NUL-terminated string.
|
cannam@87
|
916 * \assert
|
cannam@87
|
917 * \code value != NULL \endcode
|
cannam@87
|
918 * \retval FLAC__bool
|
cannam@87
|
919 * \c false if entry name is illegal, else \c true.
|
cannam@87
|
920 */
|
cannam@87
|
921 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length);
|
cannam@87
|
922
|
cannam@87
|
923 /** Check a Vorbis comment entry to see if it conforms to the Vorbis
|
cannam@87
|
924 * comment specification.
|
cannam@87
|
925 *
|
cannam@87
|
926 * Vorbis comment entries must be of the form 'name=value', and 'name' and
|
cannam@87
|
927 * 'value' must be legal according to
|
cannam@87
|
928 * FLAC__format_vorbiscomment_entry_name_is_legal() and
|
cannam@87
|
929 * FLAC__format_vorbiscomment_entry_value_is_legal() respectively.
|
cannam@87
|
930 *
|
cannam@87
|
931 * \param entry An entry to be checked.
|
cannam@87
|
932 * \param length The length of \a entry in bytes.
|
cannam@87
|
933 * \assert
|
cannam@87
|
934 * \code value != NULL \endcode
|
cannam@87
|
935 * \retval FLAC__bool
|
cannam@87
|
936 * \c false if entry name is illegal, else \c true.
|
cannam@87
|
937 */
|
cannam@87
|
938 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length);
|
cannam@87
|
939
|
cannam@87
|
940 /** Check a seek table to see if it conforms to the FLAC specification.
|
cannam@87
|
941 * See the format specification for limits on the contents of the
|
cannam@87
|
942 * seek table.
|
cannam@87
|
943 *
|
cannam@87
|
944 * \param seek_table A pointer to a seek table to be checked.
|
cannam@87
|
945 * \assert
|
cannam@87
|
946 * \code seek_table != NULL \endcode
|
cannam@87
|
947 * \retval FLAC__bool
|
cannam@87
|
948 * \c false if seek table is illegal, else \c true.
|
cannam@87
|
949 */
|
cannam@87
|
950 FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table);
|
cannam@87
|
951
|
cannam@87
|
952 /** Sort a seek table's seek points according to the format specification.
|
cannam@87
|
953 * This includes a "unique-ification" step to remove duplicates, i.e.
|
cannam@87
|
954 * seek points with identical \a sample_number values. Duplicate seek
|
cannam@87
|
955 * points are converted into placeholder points and sorted to the end of
|
cannam@87
|
956 * the table.
|
cannam@87
|
957 *
|
cannam@87
|
958 * \param seek_table A pointer to a seek table to be sorted.
|
cannam@87
|
959 * \assert
|
cannam@87
|
960 * \code seek_table != NULL \endcode
|
cannam@87
|
961 * \retval unsigned
|
cannam@87
|
962 * The number of duplicate seek points converted into placeholders.
|
cannam@87
|
963 */
|
cannam@87
|
964 FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table);
|
cannam@87
|
965
|
cannam@87
|
966 /** Check a cue sheet to see if it conforms to the FLAC specification.
|
cannam@87
|
967 * See the format specification for limits on the contents of the
|
cannam@87
|
968 * cue sheet.
|
cannam@87
|
969 *
|
cannam@87
|
970 * \param cue_sheet A pointer to an existing cue sheet to be checked.
|
cannam@87
|
971 * \param check_cd_da_subset If \c true, check CUESHEET against more
|
cannam@87
|
972 * stringent requirements for a CD-DA (audio) disc.
|
cannam@87
|
973 * \param violation Address of a pointer to a string. If there is a
|
cannam@87
|
974 * violation, a pointer to a string explanation of the
|
cannam@87
|
975 * violation will be returned here. \a violation may be
|
cannam@87
|
976 * \c NULL if you don't need the returned string. Do not
|
cannam@87
|
977 * free the returned string; it will always point to static
|
cannam@87
|
978 * data.
|
cannam@87
|
979 * \assert
|
cannam@87
|
980 * \code cue_sheet != NULL \endcode
|
cannam@87
|
981 * \retval FLAC__bool
|
cannam@87
|
982 * \c false if cue sheet is illegal, else \c true.
|
cannam@87
|
983 */
|
cannam@87
|
984 FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation);
|
cannam@87
|
985
|
cannam@87
|
986 /** Check picture data to see if it conforms to the FLAC specification.
|
cannam@87
|
987 * See the format specification for limits on the contents of the
|
cannam@87
|
988 * PICTURE block.
|
cannam@87
|
989 *
|
cannam@87
|
990 * \param picture A pointer to existing picture data to be checked.
|
cannam@87
|
991 * \param violation Address of a pointer to a string. If there is a
|
cannam@87
|
992 * violation, a pointer to a string explanation of the
|
cannam@87
|
993 * violation will be returned here. \a violation may be
|
cannam@87
|
994 * \c NULL if you don't need the returned string. Do not
|
cannam@87
|
995 * free the returned string; it will always point to static
|
cannam@87
|
996 * data.
|
cannam@87
|
997 * \assert
|
cannam@87
|
998 * \code picture != NULL \endcode
|
cannam@87
|
999 * \retval FLAC__bool
|
cannam@87
|
1000 * \c false if picture data is illegal, else \c true.
|
cannam@87
|
1001 */
|
cannam@87
|
1002 FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation);
|
cannam@87
|
1003
|
cannam@87
|
1004 /* \} */
|
cannam@87
|
1005
|
cannam@87
|
1006 #ifdef __cplusplus
|
cannam@87
|
1007 }
|
cannam@87
|
1008 #endif
|
cannam@87
|
1009
|
cannam@87
|
1010 #endif
|