Ignore:
Timestamp:
Nov 23, 2006 10:19:46 AM (17 years ago)
Author:
bennylp
Message:

Updated Speex to their latest SVN (1.2-beta). AEC seems
to work much better now and take less CPU, so I increased
default tail length in PJSUA to 800ms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-codec/speex/lsp.c

    r628 r823  
    55        DATE CREATED: 24/2/93 
    66 
    7 Heavily modified by Jean-Marc Valin (fixed-point, optimizations,  
    8                                      additional functions, ...) 
     7Heavily modified by Jean-Marc Valin (c) 2002-2006 (fixed-point,  
     8                       optimizations, additional functions, ...) 
    99 
    1010   This file contains functions for converting Linear Prediction 
     
    510510      /* hard limit ak's to +/- 32767 */ 
    511511 
    512       if (a < -32767) a = 32767; 
     512      if (a < -32767) a = -32767; 
    513513      if (a > 32767) a = 32767; 
    514514      ak[j-1] = (short)a; 
Note: See TracChangeset for help on using the changeset viewer.