Changeset 2027


Ignore:
Timestamp:
Jun 16, 2008 9:52:50 AM (16 years ago)
Author:
nanang
Message:

More ticket #540: updated snd-auto-close to work friendly with call

Location:
pjproject/trunk/pjsip/src/pjsua-lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r1961 r2027  
    348348 
    349349    PJSUA_LOCK(); 
     350 
     351    /* Create sound port if none is instantiated */ 
     352    if (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&  
     353        !pjsua_var.no_snd)  
     354    { 
     355        pj_status_t status; 
     356 
     357        status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev); 
     358        if (status != PJ_SUCCESS) { 
     359            PJSUA_UNLOCK(); 
     360            return status; 
     361        } 
     362    } 
    350363 
    351364    acc = &pjsua_var.acc[acc_id]; 
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c

    r2018 r2027  
    426426} 
    427427 
     428/* Check if sound device is idle. */ 
     429static void check_snd_dev_idle() 
     430{ 
     431 
     432    /* Activate sound device auto-close timer if sound device is idle. 
     433     * It is idle when there is no port connection in the bridge. 
     434     */ 
     435    if ((pjsua_var.snd_port!=NULL || pjsua_var.null_snd!=NULL) &&  
     436        pjsua_var.snd_idle_timer.id == PJ_FALSE && 
     437        pjmedia_conf_get_connect_count(pjsua_var.mconf) == 0 && 
     438        pjsua_var.media_cfg.snd_auto_close_time >= 0) 
     439    { 
     440        pj_time_val delay; 
     441 
     442        delay.msec = 0; 
     443        delay.sec = pjsua_var.media_cfg.snd_auto_close_time; 
     444 
     445        pjsua_var.snd_idle_timer.id = PJ_TRUE; 
     446        pjsip_endpt_schedule_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer,  
     447                                   &delay); 
     448    } 
     449} 
     450 
     451 
    428452/* Timer callback to close sound device */ 
    429453static void close_snd_timer_cb( pj_timer_heap_t *th, 
     
    966990    if (call->conf_slot != PJSUA_INVALID_ID) { 
    967991        if (pjsua_var.mconf) { 
    968             pjmedia_conf_remove_port(pjsua_var.mconf, call->conf_slot); 
     992            pjsua_conf_remove_port(call->conf_slot); 
    969993        } 
    970994        call->conf_slot = PJSUA_INVALID_ID; 
     
    13261350PJ_DEF(pj_status_t) pjsua_conf_remove_port(pjsua_conf_port_id id) 
    13271351{ 
    1328     return pjmedia_conf_remove_port(pjsua_var.mconf, (unsigned)id); 
     1352    pj_status_t status; 
     1353 
     1354    status = pjmedia_conf_remove_port(pjsua_var.mconf, (unsigned)id); 
     1355    check_snd_dev_idle(); 
     1356 
     1357    return status; 
    13291358} 
    13301359 
     
    13681397 
    13691398    status = pjmedia_conf_disconnect_port(pjsua_var.mconf, source, sink); 
    1370     if (status != PJ_SUCCESS) 
    1371         return status; 
    1372  
    1373     /* If no port is connected, sound device must be idle. Activate sound  
    1374      * device auto-close timer. 
    1375      */ 
    1376     if ((pjsua_var.snd_port!=NULL || pjsua_var.null_snd!=NULL) &&  
    1377         pjsua_var.snd_idle_timer.id==PJ_FALSE && 
    1378         pjmedia_conf_get_connect_count(pjsua_var.mconf) == 0 && 
    1379         pjsua_var.media_cfg.snd_auto_close_time >= 0) 
    1380     { 
    1381         pj_time_val delay; 
    1382  
    1383         delay.msec = 0; 
    1384         delay.sec = pjsua_var.media_cfg.snd_auto_close_time; 
    1385  
    1386         pjsua_var.snd_idle_timer.id = PJ_TRUE; 
    1387         pjsip_endpt_schedule_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer,  
    1388                                    &delay); 
    1389     } 
     1399    check_snd_dev_idle(); 
    13901400 
    13911401    return status; 
     
    16491659 
    16501660    if (pjsua_var.player[id].port) { 
    1651         pjmedia_conf_remove_port(pjsua_var.mconf,  
    1652                                  pjsua_var.player[id].slot); 
     1661        pjsua_conf_remove_port(pjsua_var.player[id].slot); 
    16531662        pjmedia_port_destroy(pjsua_var.player[id].port); 
    16541663        pjsua_var.player[id].port = NULL; 
     
    18251834 
    18261835    if (pjsua_var.recorder[id].port) { 
    1827         pjmedia_conf_remove_port(pjsua_var.mconf,  
    1828                                  pjsua_var.recorder[id].slot); 
     1836        pjsua_conf_remove_port(pjsua_var.recorder[id].slot); 
    18291837        pjmedia_port_destroy(pjsua_var.recorder[id].port); 
    18301838        pjsua_var.recorder[id].port = NULL; 
Note: See TracChangeset for help on using the changeset viewer.