RetroArch
format.h
Go to the documentation of this file.
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2000-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLAC__FORMAT_H
34 #define FLAC__FORMAT_H
35 
36 #include "export.h"
37 #include "ordinals.h"
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
87 /*
88  Most of the values described in this file are defined by the FLAC
89  format specification. There is nothing to tune here.
90 */
91 
93 #define FLAC__MAX_METADATA_TYPE_CODE (126u)
94 
96 #define FLAC__MIN_BLOCK_SIZE (16u)
97 
99 #define FLAC__MAX_BLOCK_SIZE (65535u)
100 
103 #define FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ (4608u)
104 
106 #define FLAC__MAX_CHANNELS (8u)
107 
109 #define FLAC__MIN_BITS_PER_SAMPLE (4u)
110 
112 #define FLAC__MAX_BITS_PER_SAMPLE (32u)
113 
122 #define FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE (24u)
123 
128 #define FLAC__MAX_SAMPLE_RATE (655350u)
129 
131 #define FLAC__MAX_LPC_ORDER (32u)
132 
135 #define FLAC__SUBSET_MAX_LPC_ORDER_48000HZ (12u)
136 
140 #define FLAC__MIN_QLP_COEFF_PRECISION (5u)
141 
145 #define FLAC__MAX_QLP_COEFF_PRECISION (15u)
146 
148 #define FLAC__MAX_FIXED_ORDER (4u)
149 
151 #define FLAC__MAX_RICE_PARTITION_ORDER (15u)
152 
154 #define FLAC__SUBSET_MAX_RICE_PARTITION_ORDER (8u)
155 
162 extern FLAC_API const char *FLAC__VERSION_STRING;
163 
168 extern FLAC_API const char *FLAC__VENDOR_STRING;
169 
171 extern FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]; /* = "fLaC" */
172 
176 extern FLAC_API const unsigned FLAC__STREAM_SYNC; /* = 0x664C6143 */
177 
179 extern FLAC_API const unsigned FLAC__STREAM_SYNC_LEN; /* = 32 bits */
180 
182 #define FLAC__STREAM_SYNC_LENGTH (4u)
183 
184 
185 /*****************************************************************************
186  *
187  * Subframe structures
188  *
189  *****************************************************************************/
190 
191 /*****************************************************************************/
192 
194 typedef enum {
203 
209 extern FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[];
210 
211 
214 typedef struct {
215 
216  unsigned *parameters;
219  unsigned *raw_bits;
230 
233 typedef struct {
234 
235  unsigned order;
242 
255 typedef struct {
257  union {
259  } data;
261 
262 extern FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN;
264 /*****************************************************************************/
265 
267 typedef enum {
273 
279 extern FLAC_API const char * const FLAC__SubframeTypeString[];
280 
281 
284 typedef struct {
287 
288 
291 typedef struct {
292  const FLAC__int32 *data;
294 
295 
298 typedef struct {
302  unsigned order;
311 
312 
315 typedef struct {
319  unsigned order;
337 
339 extern FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN;
344 typedef struct {
346  union {
351  } data;
352  unsigned wasted_bits;
354 
362 extern FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN;
363 extern FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN;
364 extern FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN;
371 /*****************************************************************************/
372 
373 
374 /*****************************************************************************
375  *
376  * Frame structures
377  *
378  *****************************************************************************/
379 
381 typedef enum {
387 
393 extern FLAC_API const char * const FLAC__ChannelAssignmentString[];
394 
396 typedef enum {
400 
406 extern FLAC_API const char * const FLAC__FrameNumberTypeString[];
407 
408 
411 typedef struct {
412  unsigned blocksize;
415  unsigned sample_rate;
418  unsigned channels;
424  unsigned bits_per_sample;
432  union {
435  } number;
445 
446 extern FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC;
447 extern FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN;
448 extern FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN;
450 extern FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN;
451 extern FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN;
453 extern FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN;
454 extern FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN;
455 extern FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN;
460 typedef struct {
467 
468 extern FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN;
473 typedef struct {
477 } FLAC__Frame;
478 
479 /*****************************************************************************/
480 
481 
482 /*****************************************************************************
483  *
484  * Meta-data structures
485  *
486  *****************************************************************************/
487 
489 typedef enum {
490 
518 
524 extern FLAC_API const char * const FLAC__MetadataTypeString[];
525 
526 
529 typedef struct {
530  unsigned min_blocksize, max_blocksize;
531  unsigned min_framesize, max_framesize;
532  unsigned sample_rate;
533  unsigned channels;
534  unsigned bits_per_sample;
536  FLAC__byte md5sum[16];
538 
550 #define FLAC__STREAM_METADATA_STREAMINFO_LENGTH (34u)
551 
554 typedef struct {
555  int dummy;
561 
562 
565 typedef struct {
566  FLAC__byte id[4];
569 
574 typedef struct {
582  unsigned frame_samples;
585 
591 #define FLAC__STREAM_METADATA_SEEKPOINT_LENGTH (18u)
592 
598 
599 
612 typedef struct {
613  unsigned num_points;
616 
617 
624 typedef struct {
628 
634 typedef struct {
639 
647 typedef struct {
656 
666 typedef struct {
673  char isrc[13];
676  unsigned type:1;
679  unsigned pre_emphasis:1;
689 
703 typedef struct {
704  char media_catalog_number[129];
716  unsigned num_tracks;
723 
732 typedef enum {
756 
763 extern FLAC_API const char * const FLAC__StreamMetadata_Picture_TypeString[];
764 
769 typedef struct {
773  char *mime_type;
812 
813 extern FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_TYPE_LEN;
827 typedef struct {
830 
831 
834 typedef struct {
843  unsigned length;
846  union {
855  } data;
859 
860 extern FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN;
861 extern FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN;
862 extern FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN;
865 #define FLAC__STREAM_METADATA_HEADER_LENGTH (4u)
866 
867 /*****************************************************************************/
868 
869 
870 /*****************************************************************************
871  *
872  * Utility functions
873  *
874  *****************************************************************************/
875 
884 
896 
907 
921 
937 
954 
966 
980 
999 FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation);
1000 
1017 FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation);
1018 
1019 /* \} */
1020 
1021 #ifdef __cplusplus
1022 }
1023 #endif
1024 
1025 #endif
uint64_t FLAC__uint64
Definition: ordinals.h:66
unsigned order
Definition: format.h:302
FLAC__MetadataType
Definition: format.h:489
FLAC__StreamMetadata_Unknown unknown
Definition: format.h:854
FLAC__Subframe_LPC lpc
Definition: format.h:349
FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
Definition: format.c:122
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN
Definition: format.c:98
FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN
Definition: format.c:147
FLAC_API const char *const FLAC__EntropyCodingMethodTypeString[]
Definition: format.c:139
FLAC_API const char *const FLAC__FrameNumberTypeString[]
Definition: format.c:170
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN
Definition: format.c:101
Definition: format.h:666
FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN
Definition: format.c:125
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
Definition: format.c:70
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN
Definition: format.c:111
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN
Definition: format.c:133
FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
Definition: format.c:79
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
Definition: format.c:73
Definition: format.h:397
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
Definition: format.c:68
Definition: format.h:503
FLAC__uint32 width
Definition: format.h:791
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
Definition: format.c:66
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
Definition: format.c:154
FLAC__uint64 sample_number
Definition: format.h:434
FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
Definition: format.c:81
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN
Definition: format.c:107
FLAC__MetadataType type
Definition: format.h:835
FLAC__byte number
Definition: format.h:653
Definition: format.h:509
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN
Definition: format.c:108
Definition: format.h:529
GLsizei GLsizei GLenum GLenum const GLvoid * data
Definition: glext.h:6303
FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN
Definition: format.c:126
Definition: format.h:255
FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC
Definition: format.c:117
unsigned pre_emphasis
Definition: format.h:679
FLAC__uint8 crc
Definition: format.h:439
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_TYPE_LEN
Definition: format.c:104
FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
Definition: format.c:149
FLAC__StreamMetadata_CueSheet_Index * indices
Definition: format.h:685
Definition: format.h:344
unsigned sample_rate
Definition: ffmpeg_core.c:181
FLAC__FrameNumberType
Definition: format.h:396
Definition: format.h:494
#define FLAC__MAX_CHANNELS
Definition: format.h:106
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
Definition: format.c:134
FLAC__EntropyCodingMethodType type
Definition: format.h:256
unsigned bits_per_sample
Definition: format.h:424
FLAC__Subframe_Fixed fixed
Definition: format.h:348
unsigned sample_rate
Definition: format.h:532
GLuint const GLchar * name
Definition: glext.h:6671
FLAC__byte number
Definition: format.h:670
FLAC_API const char *const FLAC__MetadataTypeString[]
Definition: format.c:175
Definition: format.h:565
int quantization_level
Definition: format.h:325
int dummy
Definition: format.h:555
FLAC__ChannelAssignment channel_assignment
Definition: format.h:421
FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Definition: format.c:209
FLAC__uint32 height
Definition: format.h:794
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN
Definition: format.c:95
Definition: format.h:473
unsigned qlp_coeff_precision
Definition: format.h:322
FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
Definition: format.c:124
FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
Definition: format.c:84
FLAC__ChannelAssignment
Definition: format.h:381
FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN
Definition: format.c:113
Definition: format.h:411
Definition: format.h:491
FLAC__uint16 crc
Definition: format.h:461
FLAC__int32 value
Definition: format.h:285
FLAC__uint32 depth
Definition: format.h:797
unsigned min_framesize
Definition: format.h:531
FLAC__StreamMetadata_VorbisComment_Entry vendor_string
Definition: format.h:635
unsigned channels
Definition: format.h:418
Definition: format.h:769
static char * number(char *str, long num, int base, int size, int precision, int type)
Definition: kprintf.c:42
FLAC__EntropyCodingMethod_PartitionedRice partitioned_rice
Definition: format.h:258
FLAC__byte num_indices
Definition: format.h:682
FLAC__byte * data
Definition: format.h:808
#define FLAC__MAX_FIXED_ORDER
Definition: format.h:148
FLAC__FrameNumberType number_type
Definition: format.h:427
unsigned sample_rate
Definition: format.h:415
Definition: format.h:647
unsigned num_points
Definition: format.h:613
const FLAC__int32 * residual
Definition: format.h:308
FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]
Definition: format.c:61
FLAC__FrameFooter footer
Definition: format.h:476
FLAC__uint32 data_length
Definition: format.h:805
Definition: format.h:500
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN
Definition: format.c:99
Definition: format.h:612
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
Definition: format.c:152
uint8_t FLAC__uint8
Definition: ordinals.h:59
Definition: format.h:383
FLAC__StreamMetadata_Picture picture
Definition: format.h:853
GLsizei const GLfloat * value
Definition: glext.h:6709
Definition: format.h:506
Definition: format.h:554
unsigned channels
Definition: format.h:533
#define FLAC_API
Definition: export.h:73
FLAC__SubframeType type
Definition: format.h:345
FLAC__bool is_last
Definition: format.h:840
FLAC_API const char *const FLAC__SubframeTypeString[]
Definition: format.c:156
FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length)
Definition: format.c:395
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN
Definition: format.c:100
unsigned order
Definition: format.h:235
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN
Definition: format.c:109
Definition: format.h:284
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
Definition: format.c:130
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
Definition: format.c:151
FLAC__EntropyCodingMethodType
Definition: format.h:194
int FLAC__bool
Definition: ordinals.h:70
Definition: format.h:834
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER
Definition: format.c:137
FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
Definition: format.c:421
FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate)
Definition: format.c:218
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN
Definition: format.c:86
Definition: format.h:703
Definition: format.h:384
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
Definition: format.c:65
FLAC__uint32 frame_number
Definition: format.h:433
FLAC__StreamMetadata_CueSheet_Track * tracks
Definition: format.h:719
Definition: format.h:634
FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
Definition: format.c:280
FLAC__StreamMetadata_Picture_Type type
Definition: format.h:770
unsigned min_blocksize
Definition: format.h:530
FLAC_API const char *const FLAC__StreamMetadata_Picture_TypeString[]
Definition: format.c:185
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_COLORS_LEN
Definition: format.c:110
FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN
Definition: format.c:128
FLAC__StreamMetadata_Application application
Definition: format.h:849
FLAC__Subframe_Constant constant
Definition: format.h:347
FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN
Definition: format.c:118
FLAC__byte * entry
Definition: format.h:626
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
Definition: format.c:72
FLAC__StreamMetadata_CueSheet cue_sheet
Definition: format.h:852
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN
Definition: format.c:91
Definition: format.h:298
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN
Definition: format.c:87
unsigned wasted_bits
Definition: format.h:352
Definition: format.h:515
FLAC__uint64 lead_in
Definition: format.h:710
FLAC__uint32 num_comments
Definition: format.h:636
FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN
Definition: format.c:119
Definition: format.h:271
#define FLAC__MAX_LPC_ORDER
Definition: format.h:131
FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
Definition: format.c:78
Definition: format.h:827
FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN
Definition: format.c:114
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN
Definition: format.c:94
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN
Definition: format.c:92
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN
Definition: format.c:148
FLAC__SubframeType
Definition: format.h:267
FLAC_API const unsigned FLAC__STREAM_SYNC_LEN
Definition: format.c:63
FLAC__EntropyCodingMethod entropy_coding_method
Definition: format.h:299
FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
Definition: format.c:77
FLAC_API const char *const FLAC__ChannelAssignmentString[]
Definition: format.c:163
FLAC__uint32 length
Definition: format.h:625
Definition: format.h:382
This module contains #defines and symbols for exporting function calls, and providing version informa...
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN
Definition: format.c:106
FLAC__StreamMetadata_VorbisComment vorbis_comment
Definition: format.h:851
FLAC__EntropyCodingMethod entropy_coding_method
Definition: format.h:316
FLAC_API const char * FLAC__VERSION_STRING
Definition: format.c:56
unsigned capacity_by_order
Definition: format.h:224
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
Definition: format.c:69
FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
Definition: format.c:121
Definition: format.h:291
Definition: format.h:512
const FLAC__EntropyCodingMethod_PartitionedRiceContents * contents
Definition: format.h:238
FLAC__uint32 colors
Definition: format.h:800
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
Definition: format.c:131
FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
Definition: format.c:244
FLAC__byte * data
Definition: format.h:828
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN
Definition: format.c:105
FLAC__byte * description
Definition: format.h:784
#define FLAC__MAX_METADATA_TYPE_CODE
Definition: format.h:93
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
Definition: format.c:96
uint32_t FLAC__uint32
Definition: ordinals.h:65
FLAC__uint64 sample_number
Definition: format.h:575
FLAC__uint64 stream_offset
Definition: format.h:578
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
Definition: format.c:132
FLAC__bool is_cd
Definition: format.h:713
unsigned bits_per_sample
Definition: format.h:534
unsigned blocksize
Definition: format.h:412
FLAC__Subframe_Verbatim verbatim
Definition: format.h:350
FLAC__byte * data
Definition: format.h:567
FLAC__uint64 offset
Definition: format.h:648
Definition: format.h:315
FLAC_API FLAC__bool FLAC__format_sample_rate_is_subset(unsigned sample_rate)
Definition: format.c:228
FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
Definition: format.c:145
unsigned order
Definition: format.h:319
GLenum GLuint GLenum GLsizei length
Definition: glext.h:6233
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
Definition: format.c:88
Definition: format.h:270
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
Definition: format.c:71
unsigned frame_samples
Definition: format.h:582
FLAC__StreamMetadata_Picture_Type
Definition: format.h:732
unsigned * parameters
Definition: format.h:216
FLAC_API const char * FLAC__VENDOR_STRING
Definition: format.c:58
Definition: format.h:497
FLAC__FrameHeader header
Definition: format.h:474
FLAC__StreamMetadata_Padding padding
Definition: format.h:848
FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
Definition: format.c:120
const FLAC__int32 * data
Definition: format.h:292
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
Definition: format.c:153
FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN
Definition: format.c:75
FLAC__StreamMetadata_StreamInfo stream_info
Definition: format.h:847
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN
Definition: format.c:93
Definition: format.h:460
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
Definition: format.c:102
FLAC_API const unsigned FLAC__STREAM_SYNC
Definition: format.c:62
FLAC__StreamMetadata_SeekPoint * points
Definition: format.h:614
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
Definition: format.c:136
FLAC__uint64 total_samples
Definition: format.h:535
unsigned num_tracks
Definition: format.h:716
Definition: format.h:385
FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation)
Definition: format.c:500
unsigned type
Definition: format.h:676
FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
Definition: format.c:144
const FLAC__int32 * residual
Definition: format.h:334
FLAC__StreamMetadata_VorbisComment_Entry * comments
Definition: format.h:637
Definition: format.h:268
Definition: format.h:269
FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN
Definition: format.c:115
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
Definition: format.c:67
FLAC__uint64 offset
Definition: format.h:667
FLAC__StreamMetadata_SeekTable seek_table
Definition: format.h:850
FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
Definition: format.c:83
uint16_t FLAC__uint16
Definition: ordinals.h:64
FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name)
Definition: format.c:362
Definition: format.h:574
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN
Definition: format.c:90
FLAC__uint8 FLAC__byte
Definition: ordinals.h:72
FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length)
Definition: format.c:371
unsigned * raw_bits
Definition: format.h:219
int32_t FLAC__int32
Definition: ordinals.h:62
unsigned length
Definition: format.h:843
FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
Definition: format.c:123
char * mime_type
Definition: format.h:773