Lines Matching defs:FLAC__StreamDecoderPrivate
150 typedef struct FLAC__StreamDecoderPrivate { struct
152 FLAC__bool is_ogg;
154 FLAC__StreamDecoderReadCallback read_callback;
155 FLAC__StreamDecoderSeekCallback seek_callback;
156 FLAC__StreamDecoderTellCallback tell_callback;
157 FLAC__StreamDecoderLengthCallback length_callback;
158 FLAC__StreamDecoderEofCallback eof_callback;
159 FLAC__StreamDecoderWriteCallback write_callback;
160 FLAC__StreamDecoderMetadataCallback metadata_callback;
161 FLAC__StreamDecoderErrorCallback error_callback;
163 … data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
165 … data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
167 … data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
169 … data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
170 …eader_read_rice_signed_block)(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter);
171 void *client_data;
172 …only used if FLAC__stream_decoder_init_file()/FLAC__stream_decoder_init_file() called, else NULL */
173 FLAC__BitReader *input;
174 FLAC__int32 *output[FLAC__MAX_CHANNELS];
175 …e the aligned pointers; the real pointers that should be free()'d are residual_unaligned[] below */
176 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
177 unsigned output_capacity, output_channels;
178 FLAC__uint32 fixed_block_size, next_fixed_block_size;
179 FLAC__uint64 samples_decoded;
180 FLAC__bool has_stream_info, has_seek_table;
181 FLAC__StreamMetadata stream_info;
182 FLAC__StreamMetadata seek_table;
183 …bool metadata_filter[128]; /* MAGIC number 128 == total number of metadata block types == 1 << 7 */
184 FLAC__byte *metadata_filter_ids;
208 } FLAC__StreamDecoderPrivate; argument