Home | History | Annotate | Download | only in libFLAC

Lines Matching defs:side

166 	/* for use when the signal is <= 16 bits-per-sample, or <= 15 bits-per-sample on a side channel (which requires 1 extra bit): */
168 /* for use when the signal is <= 16 bits-per-sample, or <= 15 bits-per-sample on a side channel (which requires 1 extra bit), AND order <= 8: */
2005 FLAC__int32 mid, side;
2091 side = decoder->private_->output[1][i];
2093 mid |= (sideside' is odd... */
2094 decoder->private_->output[0][i] = (mid + side) >> 1;
2095 decoder->private_->output[1][i] = (mid - side) >> 1;
2097 /* OPT: without 'side' temp variable */
2098 mid = (decoder->private_->output[0][i] << 1) | (decoder->private_->output[1][i] & 1); /* i.e. if 'side' is odd... */