Ignore:
Timestamp:
Jun 29, 2006 2:45:17 PM (18 years ago)
Author:
bennylp
Message:

Improvements in PJMEDIA to support RFC 3605 (RTCP attribute in SDP) and other changes to improve RTCP communication behind NAT. Also fixed bug related to RTCP reporting changes in revision 565

File:
1 edited

Legend:

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

    r565 r568  
    13051305               stat.rx.loss * 100.0 / (stat.rx.pkt + stat.rx.loss), 
    13061306               stat.rx.dup,  
    1307                stat.rx.dup * 100.0 / (stat.rx.pkt + stat.rx.dup), 
     1307               stat.rx.dup * 100.0 / (stat.rx.pkt + stat.rx.loss), 
    13081308               stat.rx.reorder,  
    1309                stat.rx.reorder * 100.0 / (stat.rx.pkt + stat.rx.reorder), 
     1309               stat.rx.reorder * 100.0 / (stat.rx.pkt + stat.rx.loss), 
    13101310               indent, indent, 
    13111311               stat.rx.loss_period.min / 1000.0,  
     
    13641364               stat.tx.loss * 100.0 / (stat.tx.pkt + stat.tx.loss), 
    13651365               stat.tx.dup,  
    1366                stat.tx.dup * 100.0 / (stat.tx.pkt + stat.tx.dup), 
     1366               stat.tx.dup * 100.0 / (stat.tx.pkt + stat.tx.loss), 
    13671367               stat.tx.reorder,  
    1368                stat.tx.reorder * 100.0 / (stat.tx.pkt + stat.tx.reorder), 
     1368               stat.tx.reorder * 100.0 / (stat.tx.pkt + stat.tx.loss), 
    13691369 
    13701370               indent, indent, 
Note: See TracChangeset for help on using the changeset viewer.