Home
last modified time | relevance | path

Searched refs:FLAC__MAX_CHANNELS (Results 1 – 5 of 5) sorted by relevance

/external/flac/include/share/
Dreplaygain_synthesis.h26 #define FLAC_SHARE__MAX_SUPPORTED_CHANNELS FLAC__MAX_CHANNELS
/external/flac/include/FLAC/
Dformat.h106 #define FLAC__MAX_CHANNELS (8u) macro
475 FLAC__Subframe subframes[FLAC__MAX_CHANNELS];
/external/flac/libFLAC/
Dstream_encoder.c85 FLAC__int32 *data[FLAC__MAX_CHANNELS];
318 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
321 …FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) the floating-point ver…
326 …unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input si…
328 …FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best w…
330 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
332 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
334 …opyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
335 …Method_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
336 …dingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
[all …]
Dstream_decoder.c140 FLAC__int32 *output[FLAC__MAX_CHANNELS];
141 …FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real p…
142 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
158 FLAC__int32 *residual_unaligned[FLAC__MAX_CHANNELS];
283 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in FLAC__stream_decoder_new()
292 for(i = 0; i < FLAC__MAX_CHANNELS; i++) in FLAC__stream_decoder_new()
322 for(i = 0; i < FLAC__MAX_CHANNELS; i++) in FLAC__stream_decoder_delete()
651 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in FLAC__stream_decoder_finish()
1276 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in allocate_output_()
2953 const FLAC__int32 *newbuffer[FLAC__MAX_CHANNELS]; in write_audio_frame_to_client_()
Dstream_encoder_framing.c292 …= (1u << FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN) && header->channels <= FLAC__MAX_CHANNELS); in FLAC__frame_add_header()