Home
last modified time | relevance | path

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

/external/flac/include/FLAC/
Dformat.h106 #define FLAC__MAX_CHANNELS (8u) macro
475 FLAC__Subframe subframes[FLAC__MAX_CHANNELS];
/external/flac/libFLAC/
Dstream_encoder.c81 FLAC__int32 *data[FLAC__MAX_CHANNELS];
314 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
317 …FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) the floating-point ver…
322 …unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input si…
324 …FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best w…
326 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
328 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
330 …opyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
331 …Method_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
332 …dingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
[all …]
Dstream_decoder.c148 FLAC__int32 *output[FLAC__MAX_CHANNELS];
149 …FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real p…
150 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
166 FLAC__int32 *residual_unaligned[FLAC__MAX_CHANNELS];
293 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in FLAC__stream_decoder_new()
302 for(i = 0; i < FLAC__MAX_CHANNELS; i++) in FLAC__stream_decoder_new()
332 for(i = 0; i < FLAC__MAX_CHANNELS; i++) in FLAC__stream_decoder_delete()
664 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in FLAC__stream_decoder_finish()
1292 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in allocate_output_()
2955 const FLAC__int32 *newbuffer[FLAC__MAX_CHANNELS]; in write_audio_frame_to_client_()
Dstream_encoder_framing.c287 …= (1u << FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN) && header->channels <= FLAC__MAX_CHANNELS); in FLAC__frame_add_header()