openshot-audio  0.1.6
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-2014 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 
895 FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate);
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
FLAC__byte number
Definition: format.h:670
const FLAC__EntropyCodingMethod_PartitionedRiceContents * contents
Definition: format.h:238
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN
Definition: format.c:96
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_TYPE_LEN
Definition: format.c:93
unsigned channels
Definition: format.h:533
FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length)
Definition: format.c:381
unsigned order
Definition: format.h:319
Definition: format.h:512
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN
Definition: format.c:100
FLAC__uint8 crc
Definition: format.h:439
FLAC__Subframe_LPC lpc
Definition: format.h:349
FLAC__Subframe_Constant constant
Definition: format.h:347
FLAC__uint16 crc
Definition: format.h:461
unsigned bits_per_sample
Definition: format.h:424
FLAC__uint32 num_comments
Definition: format.h:636
Definition: format.h:506
FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN
Definition: format.c:103
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
Definition: format.c:62
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
Definition: format.c:58
FLAC__byte * description
Definition: format.h:784
FLAC_API const char *const FLAC__SubframeTypeString[]
Definition: format.c:145
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN
Definition: format.c:82
unsigned capacity_by_order
Definition: format.h:224
FLAC__StreamMetadata_SeekPoint * points
Definition: format.h:614
FLAC__uint32 height
Definition: format.h:794
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN
Definition: format.c:90
FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
Definition: format.c:110
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN
Definition: format.c:137
FLAC__StreamMetadata_Picture picture
Definition: format.h:853
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
Definition: format.c:59
FLAC__uint32 width
Definition: format.h:791
Definition: format.h:284
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
Definition: format.c:55
FLAC__SubframeType type
Definition: format.h:345
unsigned length
Definition: format.h:843
FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
Definition: format.c:70
FLAC__StreamMetadata_CueSheet_Track * tracks
Definition: format.h:719
FLAC__uint32 colors
Definition: format.h:800
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN
Definition: format.c:81
FLAC__StreamMetadata_Unknown unknown
Definition: format.h:854
unsigned bits_per_sample
Definition: format.h:534
FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
Definition: format.c:111
FLAC__byte * entry
Definition: format.h:626
FLAC__ChannelAssignment channel_assignment
Definition: format.h:421
FLAC__FrameFooter footer
Definition: format.h:476
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
Definition: format.c:142
Definition: format.h:503
FLAC__StreamMetadata_CueSheet cue_sheet
Definition: format.h:852
unsigned frame_samples
Definition: format.h:582
FLAC__StreamMetadata_Padding padding
Definition: format.h:848
char * mime_type
Definition: format.h:773
Definition: format.h:612
Definition: format.h:397
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
Definition: format.c:77
FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN
Definition: format.c:136
FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC
Definition: format.c:106
unsigned * raw_bits
Definition: format.h:219
FLAC__bool is_cd
Definition: format.h:713
FLAC__StreamMetadata_VorbisComment vorbis_comment
Definition: format.h:851
Definition: format.h:385
uint32_t FLAC__uint32
Definition: ordinals.h:65
unsigned channels
Definition: format.h:418
FLAC__EntropyCodingMethodType type
Definition: format.h:256
Definition: format.h:666
FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN
Definition: format.c:102
unsigned sample_rate
Definition: format.h:532
FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN
Definition: format.c:108
FLAC__StreamMetadata_VorbisComment_Entry * comments
Definition: format.h:637
FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
Definition: format.c:269
#define FLAC__MAX_CHANNELS
Definition: format.h:106
Definition: format.h:554
int quantization_level
Definition: format.h:325
unsigned wasted_bits
Definition: format.h:352
Definition: format.h:647
const FLAC__int32 * residual
Definition: format.h:334
unsigned qlp_coeff_precision
Definition: format.h:322
FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length)
Definition: format.c:357
Definition: format.h:344
Definition: format.h:271
FLAC__StreamMetadata_StreamInfo stream_info
Definition: format.h:847
FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Definition: format.c:198
Definition: format.h:411
FLAC__uint64 sample_number
Definition: format.h:575
FLAC__Subframe_Verbatim verbatim
Definition: format.h:350
unsigned blocksize
Definition: format.h:412
FLAC__byte num_indices
Definition: format.h:682
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
Definition: format.c:60
FLAC__EntropyCodingMethod_PartitionedRice partitioned_rice
Definition: format.h:258
FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name)
Definition: format.c:348
FLAC_API const char *const FLAC__MetadataTypeString[]
Definition: format.c:164
Definition: format.h:491
Definition: format.h:473
FLAC_API const char *const FLAC__FrameNumberTypeString[]
Definition: format.c:159
Definition: format.h:634
FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
Definition: format.c:68
FLAC_API const unsigned FLAC__STREAM_SYNC
Definition: format.c:51
FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN
Definition: format.c:114
FLAC__SubframeType
Definition: format.h:267
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN
Definition: format.c:94
FLAC__uint64 offset
Definition: format.h:648
#define FLAC__MAX_FIXED_ORDER
Definition: format.h:148
FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
Definition: format.c:233
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN
Definition: format.c:75
const FLAC__int32 * data
Definition: format.h:292
FLAC__bool is_last
Definition: format.h:840
Definition: format.h:315
FLAC__StreamMetadata_Picture_Type type
Definition: format.h:770
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER
Definition: format.c:126
FLAC__uint8 FLAC__byte
Definition: ordinals.h:72
FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]
Definition: format.c:50
Definition: format.h:834
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:407
Definition: format.h:383
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
Definition: format.c:143
FLAC__uint32 length
Definition: format.h:625
FLAC__uint64 stream_offset
Definition: format.h:578
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN
Definition: format.c:97
FLAC__uint64 total_samples
Definition: format.h:535
Definition: format.h:509
FLAC_API const char * FLAC__VENDOR_STRING
Definition: format.c:48
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
Definition: format.c:120
FLAC__FrameHeader header
Definition: format.h:474
#define FLAC_API
Definition: export.h:73
Definition: format.h:827
png_uint_32 length
Definition: juce_PNGLoader.cpp:2078
FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation)
Definition: format.c:486
FLAC__StreamMetadata_CueSheet_Index * indices
Definition: format.h:685
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN
Definition: format.c:76
FLAC_API const char *const FLAC__ChannelAssignmentString[]
Definition: format.c:152
FLAC__EntropyCodingMethodType
Definition: format.h:194
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
Definition: format.c:54
FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
Definition: format.c:133
Definition: juce_win32_Windowing.cpp:76
Definition: format.h:268
FLAC__MetadataType
Definition: format.h:489
Definition: format.h:500
Definition: format.h:497
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
Definition: format.c:123
FLAC__Subframe_Fixed fixed
Definition: format.h:348
Definition: format.h:624
FLAC_API FLAC__bool FLAC__format_sample_rate_is_subset(unsigned sample_rate)
Definition: format.c:217
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN
Definition: format.c:89
unsigned min_blocksize
Definition: format.h:530
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN
Definition: format.c:79
FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
Definition: format.c:66
FLAC__uint64 sample_number
Definition: format.h:434
Definition: format.h:270
FLAC__StreamMetadata_Application application
Definition: format.h:849
Definition: format.h:529
FLAC__uint32 data_length
Definition: format.h:805
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN
Definition: format.c:84
#define FLAC__MAX_METADATA_TYPE_CODE
Definition: format.h:93
Definition: format.h:565
FLAC__StreamMetadata_VorbisComment_Entry vendor_string
Definition: format.h:635
Definition: format.h:384
FLAC__StreamMetadata_Picture_Type
Definition: format.h:732
FLAC__ChannelAssignment
Definition: format.h:381
Definition: format.h:382
#define FLAC__MAX_LPC_ORDER
Definition: format.h:131
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_COLORS_LEN
Definition: format.c:99
Definition: format.h:494
FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
Definition: format.c:138
uint8_t FLAC__uint8
Definition: ordinals.h:59
int dummy
Definition: format.h:555
FLAC__uint64 lead_in
Definition: format.h:710
Definition: format.h:703
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
Definition: format.c:140
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
Definition: format.c:57
uint16_t FLAC__uint16
Definition: ordinals.h:64
FLAC__FrameNumberType number_type
Definition: format.h:427
unsigned num_tracks
Definition: format.h:716
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
Definition: format.c:121
FLAC__uint64 offset
Definition: format.h:667
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
Definition: format.c:85
FLAC__MetadataType type
Definition: format.h:835
FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
Definition: format.c:113
FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(unsigned blocksize, unsigned sample_rate)
Definition: format.c:207
unsigned sample_rate
Definition: format.h:415
FLAC__EntropyCodingMethod entropy_coding_method
Definition: format.h:316
Definition: format.h:269
Definition: format.h:460
FLAC_API const char *const FLAC__EntropyCodingMethodTypeString[]
Definition: format.c:128
JSAMPIMAGE data
Definition: jpeglib.h:945
Definition: format.h:515
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN
Definition: format.c:83
FLAC_API const char * FLAC__VERSION_STRING
Definition: format.c:46
FLAC__byte number
Definition: format.h:653
FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN
Definition: format.c:115
FLAC__byte * data
Definition: format.h:567
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN
Definition: format.c:87
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
Definition: format.c:91
Definition: format.h:255
FLAC_API const char *const FLAC__StreamMetadata_Picture_TypeString[]
Definition: format.c:174
unsigned num_points
Definition: format.h:613
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
Definition: format.c:61
unsigned * parameters
Definition: format.h:216
FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
Definition: format.c:112
FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN
Definition: format.c:64
FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
Definition: format.c:141
const FLAC__int32 * residual
Definition: format.h:308
FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
Definition: format.c:134
FLAC__FrameNumberType
Definition: format.h:396
FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
Definition: format.c:72
FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
Definition: format.c:109
Definition: format.h:574
unsigned min_framesize
Definition: format.h:531
FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
Definition: format.c:56
uint64_t FLAC__uint64
Definition: ordinals.h:66
FLAC__byte * data
Definition: format.h:808
FLAC__int32 value
Definition: format.h:285
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
Definition: format.c:125
FLAC__uint32 frame_number
Definition: format.h:433
unsigned order
Definition: format.h:302
Definition: format.h:769
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN
Definition: format.c:98
FLAC_API const unsigned FLAC__STREAM_SYNC_LEN
Definition: format.c:52
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
Definition: format.c:119
Definition: format.h:291
FLAC__EntropyCodingMethod entropy_coding_method
Definition: format.h:299
FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN
Definition: format.c:117
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN
Definition: format.c:80
FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN
Definition: format.c:107
unsigned order
Definition: format.h:235
FLAC__StreamMetadata_SeekTable seek_table
Definition: format.h:850
FLAC__byte * data
Definition: format.h:828
FLAC_API const unsigned FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN
Definition: format.c:95
FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN
Definition: format.c:122
FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN
Definition: format.c:88
Definition: format.h:298
FLAC__uint32 depth
Definition: format.h:797
FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN
Definition: format.c:104
FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
Definition: format.c:67
int32_t FLAC__int32
Definition: ordinals.h:62
FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
Definition: format.c:73