Ignore:
Timestamp:
Jul 17, 2018 8:11:17 AM (6 years ago)
Author:
nanang
Message:

Re #2126: Implemented incoming RTCP-FB handling, i.e: parse and notify application via PJMEDIA event framework.

File:
1 edited

Legend:

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

    r5820 r5825  
    110110        goto on_error; 
    111111#endif 
     112 
     113    /* Create event manager (if not yet, e.g: PJMEDIA_HAS_VIDEO==0) */ 
     114    if (!pjmedia_event_mgr_instance()) { 
     115        status = pjmedia_event_mgr_create(pjsua_var.pool,  
     116                                          PJMEDIA_EVENT_MGR_NO_THREAD, NULL); 
     117        if (status != PJ_SUCCESS) { 
     118            PJ_PERROR(1,(THIS_FILE, status, 
     119                         "Error creating PJMEDIA event manager")); 
     120            goto on_error; 
     121        } 
     122    } 
    112123 
    113124    pj_log_pop_indent(); 
Note: See TracChangeset for help on using the changeset viewer.