Ignore:
Timestamp:
Mar 4, 2010 3:47:25 PM (14 years ago)
Author:
nanang
Message:

Ticket #1008:

  • Applied VAS AMR playback solution from Forum Nokia.
  • Fixed AMR playback for VAS and APS in composing DTX/NO_DATA (frame type 15) frame header.
  • Modified symbsndtest test application to support non-PCM audio.
  • Minor check fix in pjmedia_codec_mgr_destroy(), caught assertion when VAS factory init failed and media endpoint tried to destroy codec manager (codec mgr hasn't been init-ed).
File:
1 edited

Legend:

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

    r3078 r3116  
    8686 
    8787    /* Destroy mutex */ 
    88     pj_mutex_destroy(mgr->mutex); 
     88    if (mgr->mutex) 
     89        pj_mutex_destroy(mgr->mutex); 
    8990 
    9091    /* Release pool */ 
    91     pj_pool_release(mgr->pool); 
     92    if (mgr->pool) 
     93        pj_pool_release(mgr->pool); 
    9294 
    9395    /* Just for safety, set codec manager states to zero */ 
Note: See TracChangeset for help on using the changeset viewer.