- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/pjsip-apps/src/samples/aectest.c
r4537 r5513 60 60 " -l Set the echo tail length in ms. Default is 200 ms \n" 61 61 " -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" 63 63 " -i Interactive \n" 64 64 "\n" … … 124 124 case 0: 125 125 opt = 0; 126 break; 126 127 case 1: 127 128 opt = PJMEDIA_ECHO_SPEEX; 128 129 break; 130 case 2: 131 opt = PJMEDIA_ECHO_SIMPLE; 132 break; 129 133 case 3: 130 opt = PJMEDIA_ECHO_ SIMPLE;134 opt = PJMEDIA_ECHO_WEBRTC; 131 135 break; 132 136 default:
Note: See TracChangeset
for help on using the changeset viewer.