Lines Matching defs:smoother
67 #include <pulsecore/time-smoother.h>
105 pa_smoother_2 *smoother;
107 pa_smoother *smoother;
142 pa_assert(u->smoother);
145 latency = pa_smoother_2_get_delay(u->smoother, pa_rtclock_now(), u->write_count);
148 now = pa_smoother_get(u->smoother, now);
201 pa_smoother_2_reset(u->smoother, now);
203 pa_smoother_reset(u->smoother, now, false);
335 pa_smoother_2_reset(u->smoother, now);
337 pa_smoother_reset(u->smoother, now, false);
436 pa_smoother_2_reset(u->smoother, pa_rtclock_now());
438 pa_smoother_set_time_offset(u->smoother, pa_rtclock_now());
624 pa_smoother_2_put(u->smoother, now, position);
627 pa_smoother_put(u->smoother, now, estimated);
799 u->smoother = pa_smoother_2_new(5*PA_USEC_PER_SEC, pa_rtclock_now(), pa_frame_size(&ss), ss.rate);
801 u->smoother = pa_smoother_new(
986 if (u->smoother)
988 pa_smoother_2_free(u->smoother);
990 pa_smoother_free(u->smoother);
992 u->smoother = NULL;