Home
last modified time | relevance | path

Searched refs:FLAC__MAX_CHANNELS (Results 1 – 10 of 10) 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
482 FLAC__Subframe subframes[FLAC__MAX_CHANNELS];
/external/flac/src/libFLAC/
Dstream_encoder.c85 FLAC__int32 *data[FLAC__MAX_CHANNELS];
337 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
341 …FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) the floating-point ver…
346 …uint32_t subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input si…
348 …FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best w…
350 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
352 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
354 …opyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
355 …Method_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
356 …dingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
[all …]
Dstream_decoder.c134 FLAC__int32 *output[FLAC__MAX_CHANNELS];
135 …FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real p…
138 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
153 FLAC__int32 *residual_unaligned[FLAC__MAX_CHANNELS];
281 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()
608 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in FLAC__stream_decoder_finish()
1245 for(i = 0; i < FLAC__MAX_CHANNELS; i++) { in allocate_output_()
3200 const FLAC__int32 *newbuffer[FLAC__MAX_CHANNELS]; in write_audio_frame_to_client_()
Dstream_encoder_framing.c309 …= (1u << FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN) && header->channels <= FLAC__MAX_CHANNELS); in FLAC__frame_add_header()
/external/flac/src/flac/
Ddecode.c1114 …FLAC__int8 s8buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int32)]; /* WATCHOU… in write_callback()
1115 FLAC__uint8 u8buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int32)]; in write_callback()
1116 FLAC__int16 s16buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int16)]; in write_callback()
1117 FLAC__uint16 u16buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int16)]; in write_callback()
1118 FLAC__int32 s32buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS]; in write_callback()
1119 FLAC__uint32 u32buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS]; in write_callback()
Dencode.c137 static FLAC__int32 in_[FLAC__MAX_CHANNELS][CHUNK_OF_SAMPLES];
138 static FLAC__int32 *input_[FLAC__MAX_CHANNELS];
866 size_t channel_map[FLAC__MAX_CHANNELS]; in flac__encode_file()
937 if(encoder_session.info.channels == 0 || encoder_session.info.channels > FLAC__MAX_CHANNELS) { in flac__encode_file()
1464 for(i = 0; i < FLAC__MAX_CHANNELS; i++) in EncoderSession_construct()
2321 FLAC__int32 *out[FLAC__MAX_CHANNELS]; in format_input()
Dmain.c405 …option_values.format_channels == 0 || (uint32_t)option_values.format_channels > FLAC__MAX_CHANNELS) in do_it()
406 …ber of channels '%u', must be > 0 and <= %u\n", option_values.format_channels, FLAC__MAX_CHANNELS); in do_it()
/external/flac/src/metaflac/
Doptions.c462 …>argument.streaminfo_uint32.value)) || op->argument.streaminfo_uint32.value > FLAC__MAX_CHANNELS) { in parse_option()
463 flac_fprintf(stderr, "ERROR (--%s): value must be > 0 and <= %u\n", opt, FLAC__MAX_CHANNELS); in parse_option()
/external/flac/src/libFLAC++/
Dmetadata.cpp336 FLAC__ASSERT(value <= FLAC__MAX_CHANNELS); in set_channels()