Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:FLAC__MAX_CHANNELS

81 	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 version of the input signal */
322 unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
324 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
326 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
328 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
330 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
331 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
332 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
333 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr_mid_side[FLAC__MAX_CHANNELS][2];
334 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index (0 or 1) into 2nd dimension of the above workspaces */
336 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
387 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
390 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) */
395 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
544 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
552 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
561 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
595 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
645 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)