Lines Matching refs:temp
153 int temp, info_bits, i;
199 temp = get_bits(&gb, 12);
203 p->subframe[i].dirac_train = temp >> 11;
204 temp &= 0x7FF;
207 p->subframe[i].ad_cb_gain = FASTDIV(temp, GAIN_LEVELS);
209 p->subframe[i].amp_index = temp - p->subframe[i].ad_cb_gain *
225 temp = get_bits(&gb, 13);
226 p->subframe[0].pulse_pos = temp / 810;
228 temp -= p->subframe[0].pulse_pos * 810;
229 p->subframe[1].pulse_pos = FASTDIV(temp, 90);
231 temp -= p->subframe[1].pulse_pos * 90;
232 p->subframe[2].pulse_pos = FASTDIV(temp, 9);
233 p->subframe[3].pulse_pos = temp - p->subframe[2].pulse_pos * 9;
285 int temp, i, j;
295 temp = subfrm->pulse_pos;
297 temp -= ff_g723_1_combinatorial_table[j][i];
298 if (temp >= 0)
300 temp += ff_g723_1_combinatorial_table[j++][i];
522 int index, ccr, tgt_eng, best_eng, temp;
544 temp = best_eng * *exc_eng >> 3;
546 if (temp < ccr * ccr) {
623 int temp = buf[i] >> 2;
624 temp *= temp;
625 denom = av_sat_dadd32(denom, temp);
685 int temp;
697 temp = auto_corr[1] >> 16;
698 if (temp) {
699 temp = (auto_corr[0] >> 2) / temp;
701 p->reflection_coef = (3 * p->reflection_coef + temp + 2) >> 2;
702 temp = -p->reflection_coef >> 1 & ~3;
707 (signal_ptr[j - 1] >> 16) * temp) >> 16;
711 temp = 2 * scale + 4;
712 if (temp < 0) {
713 energy = av_clipl_int32((int64_t)auto_corr[1] << -temp);
715 energy = auto_corr[1] >> temp;