From 2b112fe9db9005b3e445e7dc462f5ec7202b8fe3 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 20 Jun 2008 22:17:40 +0200 Subject: add new function pa_smoother_reset() --- src/pulsecore/time-smoother.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/pulsecore/time-smoother.c') diff --git a/src/pulsecore/time-smoother.c b/src/pulsecore/time-smoother.c index 2723edba..fe5a4f18 100644 --- a/src/pulsecore/time-smoother.c +++ b/src/pulsecore/time-smoother.c @@ -449,3 +449,11 @@ pa_usec_t pa_smoother_translate(pa_smoother *s, pa_usec_t x, pa_usec_t y_delay) return (pa_usec_t) ((double) y_delay / nde); } + +void pa_smoother_reset(pa_smoother *s) { + pa_assert(s); + + s->n_history = 0; + s->abc_valid = FALSE; + +} -- cgit