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_aud.c

    r5792 r5825  
    502502 
    503503    if (strm) { 
     504        /* Unsubscribe from stream events */ 
     505        pjmedia_event_unsubscribe(NULL, &call_media_on_event, call_med, strm); 
     506 
    504507        pjmedia_stream_send_rtcp_bye(strm); 
    505508 
     
    701704            } 
    702705        } 
     706 
     707        /* Subscribe to stream events */ 
     708        pjmedia_event_subscribe(NULL, &call_media_on_event, call_med, 
     709                                call_med->strm.a.stream); 
    703710    } 
    704711 
Note: See TracChangeset for help on using the changeset viewer.