Ignore:
Timestamp:
Aug 11, 2008 3:30:22 PM (16 years ago)
Author:
bennylp
Message:

More ticket #590: fix the bug in smoothing factor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/echo_suppress.c

    r2200 r2203  
    673673 
    674674        /* Smoothen the transition */ 
    675         if (factor > ec->last_factor) 
     675        if (factor >= ec->last_factor) 
    676676            factor = (factor + ec->last_factor) / 2; 
    677677        else 
Note: See TracChangeset for help on using the changeset viewer.