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-apps/src/pjsua/pjsua_app.c

    r3638 r3652  
    31433143} 
    31443144 
     3145/* Callback on media events */ 
     3146static void on_call_media_event(pjsua_call_id call_id, 
     3147                                unsigned med_idx, 
     3148                                pjmedia_event *event) 
     3149{ 
     3150    char event_name[5]; 
     3151    PJ_LOG(4,(THIS_FILE, "Event %s", 
     3152              pjmedia_fourcc_name(event->type, event_name))); 
     3153} 
     3154 
    31453155/* 
    31463156 * Print buddy list. 
     
    51015111    app_config.cfg.cb.on_ice_transport_error = &on_ice_transport_error; 
    51025112    app_config.cfg.cb.on_snd_dev_operation = &on_snd_dev_operation; 
     5113    app_config.cfg.cb.on_call_media_event = &on_call_media_event; 
    51035114    app_config.log_cfg.cb = log_cb; 
    51045115 
Note: See TracChangeset for help on using the changeset viewer.