From: Jason Parker Date: Wed, 26 Mar 2008 23:26:33 +0000 (+0000) Subject: Remove excessive smoother optimization that was causing audio glitches (small "pops") X-Git-Tag: 1.4.19-rc4~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22078d33d458e546e2d7c53cdd1ce3fde159fd95;p=thirdparty%2Fasterisk.git Remove excessive smoother optimization that was causing audio glitches (small "pops") after (about 200ms later) an "incorrectly" sized frame was received. While it would be very nice to keep this as optimized as possible, it makes no sense for the smoother to be dropping random bits of audio like this. Isn't that the whole point of a smoother? Closes issue #12093. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@111245 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/frame.c b/main/frame.c index fa54e6772b..d26c607e2f 100644 --- a/main/frame.c +++ b/main/frame.c @@ -92,7 +92,6 @@ struct ast_smoother { int size; int format; int readdata; - int optimizablestream; int flags; float samplesperbyte; struct ast_frame f; @@ -195,23 +194,8 @@ int __ast_smoother_feed(struct ast_smoother *s, struct ast_frame *f, int swap) ast_swapcopy_samples(f->data, f->data, f->samples); s->opt = f; return 0; - } else { - s->optimizablestream++; - if (s->optimizablestream > 10) { - /* For the past 10 rounds, we have input and output - frames of the correct size for this smoother, yet - we were unable to optimize because there was still - some cruft left over. Lets just drop the cruft so - we can move to a fully optimized path */ - if (swap) - ast_swapcopy_samples(f->data, f->data, f->samples); - s->len = 0; - s->opt = f; - return 0; - } } - } else - s->optimizablestream = 0; + } if (s->flags & AST_SMOOTHER_FLAG_G729) { if (s->len % 10) { ast_log(LOG_NOTICE, "Dropping extra frame of G.729 since we already have a VAD frame at the end\n");