Ignore:
Timestamp:
Jul 15, 2011 6:18:29 AM (13 years ago)
Author:
bennylp
Message:

Re #1265 (GUI events): initial implementation, for renderer only first. Also re #1320 (misc): moved function prototypes from pjsua_xx.c to pjsua_internal.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/2.0-dev/pjsip/src/pjsua-lib/pjsua_media.c

    r3634 r3652  
    13131313} 
    13141314 
     1315/* Callback to receive media events */ 
     1316static pj_status_t call_media_on_event(pjmedia_event_subscription *esub, 
     1317                                       pjmedia_event *event) 
     1318{ 
     1319    pjsua_call_media *call_med = (pjsua_call_media*)esub->user_data; 
     1320    pjsua_call *call = call_med->call; 
     1321 
     1322    if (pjsua_var.ua_cfg.cb.on_call_media_event && call) { 
     1323        ++event->proc_cnt; 
     1324        (*pjsua_var.ua_cfg.cb.on_call_media_event)(call->index, 
     1325                                                   call_med->idx, event); 
     1326    } 
     1327 
     1328    return PJ_SUCCESS; 
     1329} 
     1330 
    13151331/* Initialize the media line */ 
    13161332pj_status_t pjsua_call_media_init(pjsua_call_media *call_med, 
     
    14101426    PJ_UNUSED_ARG(security_level); 
    14111427#endif 
     1428 
     1429    pjmedia_event_subscription_init(&call_med->esub, &call_media_on_event, 
     1430                                    call_med); 
    14121431 
    14131432    return PJ_SUCCESS; 
     
    21702189} 
    21712190 
    2172  
    2173 pj_status_t video_channel_update(pjsua_call_media *call_med, 
    2174                                  pj_pool_t *tmp_pool, 
    2175                                  const pjmedia_sdp_session *local_sdp, 
    2176                                  const pjmedia_sdp_session *remote_sdp); 
    2177  
    21782191pj_status_t pjsua_media_channel_update(pjsua_call_id call_id, 
    21792192                                       const pjmedia_sdp_session *local_sdp, 
Note: See TracChangeset for help on using the changeset viewer.