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-apps/src/samples/streamutil.c

    r565 r568  
    607607           stat.rx.loss * 100.0 / (stat.rx.pkt + stat.rx.loss), 
    608608           stat.rx.dup,  
    609            stat.rx.dup * 100.0 / (stat.rx.pkt + stat.rx.dup), 
     609           stat.rx.dup * 100.0 / (stat.rx.pkt + stat.rx.loss), 
    610610           stat.rx.reorder,  
    611            stat.rx.reorder * 100.0 / (stat.rx.pkt + stat.rx.reorder), 
     611           stat.rx.reorder * 100.0 / (stat.rx.pkt + stat.rx.loss), 
    612612           "", 
    613613           stat.rx.loss_period.min / 1000.0,  
     
    650650           stat.tx.loss * 100.0 / (stat.tx.pkt + stat.tx.loss), 
    651651           stat.tx.dup,  
    652            stat.tx.dup * 100.0 / (stat.tx.pkt + stat.tx.dup), 
     652           stat.tx.dup * 100.0 / (stat.tx.pkt + stat.tx.loss), 
    653653           stat.tx.reorder,  
    654            stat.tx.reorder * 100.0 / (stat.tx.pkt + stat.tx.reorder), 
     654           stat.tx.reorder * 100.0 / (stat.tx.pkt + stat.tx.loss), 
    655655           "", 
    656656           stat.tx.loss_period.min / 1000.0,  
Note: See TracChangeset for help on using the changeset viewer.