Lines Matching refs:mid
1315 /* simply using realloc() is not practical because the number of channels may change mid-stream */
2005 FLAC__int32 mid, side;
2090 mid = decoder->private_->output[0][i];
2092 mid <<= 1;
2093 mid
2094 decoder->private_->output[0][i] = (mid + side) >> 1;
2095 decoder->private_->output[1][i] = (mid - side) >> 1;
2098 mid = (decoder->private_->output[0][i] << 1) | (decoder->private_->output[1][i] & 1); /* i.e. if 'side' is odd... */
2099 decoder->private_->output[0][i] = (mid + decoder->private_->output[1][i]) >> 1;
2100 decoder->private_->output[1][i] = (mid - decoder->private_->output[1][i]) >> 1;
2992 /* take these from the current frame in case they've changed mid-stream */