Home | History | Annotate | Download | only in libspeex

Lines Matching refs:opt

178    spx_int16_t opt=0;
241 opt = latest;
265 if (tot_count < TOP_DELAY && opt > 0)
267 return opt;
470 spx_int16_t opt;
644 opt = compute_opt_delay(jitter);
647 if (opt < 0)
652 shift_timings(jitter, -opt);
655 packet->span = -opt;
718 spx_int16_t opt = compute_opt_delay(jitter);
719 /*fprintf(stderr, "opt adjustment is %d ", opt);*/
721 if (opt < 0)
723 shift_timings(jitter, -opt);
725 jitter->pointer_timestamp += opt;
726 jitter->interp_requested = -opt;
727 /*fprintf (stderr, "Decision to interpolate %d samples\n", -opt);*/
728 } else if (opt > 0)
730 shift_timings(jitter, -opt);
731 jitter->pointer_timestamp += opt;
732 /*fprintf (stderr, "Decision to drop %d samples\n", opt);*/
735 return opt;