Changeset 1064


Ignore:
Timestamp:
Mar 15, 2007 10:12:57 AM (17 years ago)
Author:
bennylp
Message:

Fixed ticket #175: GSM codec factory does not shutdown properly causing it to fail on next pjsua_init (thanks Binu K S)

File:
1 edited

Legend:

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

    r974 r1064  
    191191 
    192192    /* We don't want to deinit if there's outstanding codec. */ 
     193    /* This is silly, as we'll always have codec in the list if 
     194       we ever allocate a codec! A better behavior maybe is to  
     195       deallocate all codecs in the list. 
    193196    pj_mutex_lock(gsm_codec_factory.mutex); 
    194197    if (!pj_list_empty(&gsm_codec_factory.codec_list)) { 
     
    196199        return PJ_EBUSY; 
    197200    } 
     201    */ 
    198202 
    199203    /* Get the codec manager. */ 
Note: See TracChangeset for help on using the changeset viewer.