Ignore:
Timestamp:
May 15, 2011 12:54:28 PM (13 years ago)
Author:
ming
Message:

Fixed #1257: Option for using simple FIFO delay buffer in echo canceller.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjmedia/include/pjmedia/echo.h

    r3553 r3567  
    8989     * canceller will not be called by different threads at the same time. 
    9090     */ 
    91     PJMEDIA_ECHO_NO_LOCK = 16 
     91    PJMEDIA_ECHO_NO_LOCK = 16, 
     92 
     93    /** 
     94     * If PJMEDIA_ECHO_USE_SIMPLE_FIFO flag is specified, the delay buffer 
     95     * created for the echo canceller will use simple FIFO mechanism, i.e. 
     96     * without using WSOLA to expand and shrink audio samples. 
     97     */ 
     98    PJMEDIA_ECHO_USE_SIMPLE_FIFO = 32 
     99 
    92100 
    93101} pjmedia_echo_flag; 
Note: See TracChangeset for help on using the changeset viewer.