Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:FLAC__MAX_CHANNELS

103 	FLAC__int32 *data[FLAC__MAX_CHANNELS];
334 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
337 FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) the floating-point version of the input signal */
342 unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
344 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
346 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
348 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
350 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
351 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
352 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
353 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr_mid_side[FLAC__MAX_CHANNELS][2];
354 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index (0 or 1) into 2nd dimension of the above workspaces */
356 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
404 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
407 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS]; /* (@@@ currently unused) */
412 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
561 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
569 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
578 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
610 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
660 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)