Lines Matching refs:combined_pitch
311 uint32_t combined_pitch;
399 combined_pitch = get_bits(&gb, 24);
401 fparam->pitch_lag[0] = (combined_pitch % 151) + 36;
403 combined_pitch /= 151;
406 fparam->pitch_lag[i] = combined_pitch % 48;
407 combined_pitch /= 48;
409 if (combined_pitch > 47) {
410 av_log (p->avctx, AV_LOG_WARNING, "combined_pitch was too large\n");
411 combined_pitch = 0;
413 fparam->pitch_lag[i] = combined_pitch;