Lines Matching refs:channel_residues
171 int channel_residues[WMALL_MAX_CHANNELS][WMALL_BLOCK_MAX_SIZE];
534 s->channel_residues[ch][0] = get_sbits_long(&s->gb, s->bits_per_sample + 1);
536 s->channel_residues[ch][0] = get_sbits_long(&s->gb, s->bits_per_sample);
563 s->channel_residues[ch][i] = residue;
634 pred_error = s->channel_residues[ich][icoef] - (unsigned)pred[ich];
640 s->mclms_coeffs_cur[ich * num_channels + j] += WMASIGN(s->channel_residues[j][icoef]);
646 s->mclms_coeffs_cur[ich * num_channels + j] -= WMASIGN(s->channel_residues[j][icoef]);
652 s->mclms_prevvalues[s->mclms_recent] = av_clip(s->channel_residues[ich][icoef],
654 s->mclms_updates[s->mclms_recent] = WMASIGN(s->channel_residues[ich][icoef]);
682 pred[ich] += (uint32_t)s->channel_residues[i][icoef] *
686 s->channel_residues[ich][icoef] += (unsigned)pred[ich];
774 residue = s->channel_residues[ch][icoef]; \
783 s->channel_residues[ch][icoef] = input; \
799 s->channel_residues[0][icoef] -= (unsigned)(s->channel_residues[1][icoef] >> 1);
800 s->channel_residues[1][icoef] += (unsigned) s->channel_residues[0][icoef];
820 pred += (uint32_t)s->channel_residues[ich][i - j - 1] * filter_coeffs[j];
823 s->channel_residues[ich][i] += (unsigned)pred;
828 pred += (uint32_t)s->channel_residues[ich][i - j - 1] * filter_coeffs[j];
830 s->channel_residues[ich][i] += (unsigned)pred;
836 prevvalues[j] = s->channel_residues[ich][tile_size - j - 1];
960 s->channel_residues[i][j] = get_sbits_long(&s->gb, bits);
976 memset(s->channel_residues[i], 0, sizeof(**s->channel_residues) * subframe_len);
991 s->channel_residues[i][j] *= (unsigned)s->quant_stepsize;
1001 *s->samples_16[c]++ = (int16_t) s->channel_residues[c][j] * (1 << padding_zeroes);
1003 *s->samples_32[c]++ = s->channel_residues[c][j] * (256U << padding_zeroes);