From: Stefan Huber <[email protected]> apply_diff_time() fails when dropping bytes from the playback stream and the sample spec of sink and source differ as source's sample spec is used. Fix this by using sink's sample spec.
Signed-off-by: Stefan Huber <[email protected]> Acked-by: Peter Meerwald <[email protected]> --- src/modules/echo-cancel/module-echo-cancel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/echo-cancel/module-echo-cancel.c b/src/modules/echo-cancel/module-echo-cancel.c index 8a9823b..26ac30b 100644 --- a/src/modules/echo-cancel/module-echo-cancel.c +++ b/src/modules/echo-cancel/module-echo-cancel.c @@ -660,12 +660,12 @@ static void apply_diff_time(struct userdata *u, int64_t diff_time) { int64_t diff; if (diff_time < 0) { - diff = pa_usec_to_bytes(-diff_time, &u->source_output->sample_spec); + diff = pa_usec_to_bytes(-diff_time, &u->sink_input->sample_spec); if (diff > 0) { /* add some extra safety samples to compensate for jitter in the * timings */ - diff += 10 * pa_frame_size (&u->source_output->sample_spec); + diff += 10 * pa_frame_size (&u->sink_input->sample_spec); pa_log("Playback after capture (%lld), drop sink %lld", (long long) diff_time, (long long) diff); -- 1.7.9.5 _______________________________________________ pulseaudio-discuss mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss
