Changeset 2487


Ignore:
Timestamp:
Mar 4, 2009 6:49:06 PM (15 years ago)
Author:
nanang
Message:

Updated Symbian APS aud dev to disable G729's VAD since it is suspected to produce intermittent noise on silence (rough switches between voiced & unvoiced frames).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/aps-direct/pjmedia/src/pjmedia-audiodev/symb_aps_dev.cpp

    r2483 r2487  
    12831283    } 
    12841284 
    1285     /* Disable VAD on L16 and G711. */ 
     1285    /* Disable VAD on L16, G711, and also G729 (G729's VAD potentially  
     1286     * causes noise?). 
     1287     */ 
    12861288    if (strm->param.ext_fmt.id == PJMEDIA_FORMAT_PCMU || 
    12871289        strm->param.ext_fmt.id == PJMEDIA_FORMAT_PCMA || 
    1288         strm->param.ext_fmt.id == PJMEDIA_FORMAT_L16) 
     1290        strm->param.ext_fmt.id == PJMEDIA_FORMAT_L16 || 
     1291        strm->param.ext_fmt.id == PJMEDIA_FORMAT_G729) 
    12891292    { 
    12901293        aps_setting.vad = EFalse; 
Note: See TracChangeset for help on using the changeset viewer.