Changeset 5446 for pjproject


Ignore:
Timestamp:
Oct 6, 2016 12:52:12 AM (7 years ago)
Author:
ming
Message:

Re #1954: Add option to use WebRtc? EC in aectest sample app

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/samples/aectest.c

    r4537 r5446  
    6060"  -l  Set the echo tail length in ms. Default is 200 ms            \n" 
    6161"  -r  Set repeat count (default=1)                                 \n" 
    62 "  -a  Algorithm: 0=default, 1=speex, 3=echo suppress               \n" 
     62"  -a  Algorithm: 0=default, 1=speex, 2=echo suppress, 3=WebRtc     \n" 
    6363"  -i  Interactive                                                  \n" 
    6464"\n" 
     
    124124                case 0: 
    125125                    opt = 0; 
     126                    break; 
    126127                case 1: 
    127128                    opt = PJMEDIA_ECHO_SPEEX; 
    128129                    break; 
     130                case 2: 
     131                    opt = PJMEDIA_ECHO_SIMPLE; 
     132                    break; 
    129133                case 3: 
    130                     opt = PJMEDIA_ECHO_SIMPLE; 
     134                    opt = PJMEDIA_ECHO_WEBRTC; 
    131135                    break; 
    132136                default: 
Note: See TracChangeset for help on using the changeset viewer.