Ignore:
Timestamp:
May 2, 2006 5:47:51 PM (18 years ago)
Author:
bennylp
Message:

Fixed several bugs in RTCP and tested the compatibility. Fixed bugs: total lost byte order, RTCP RR parsing, normalizing large RTT, RX pkt lost online update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/rtcp.h

    r408 r427  
    7171#else 
    7272    pj_uint32_t     fract_lost:8;   /**< Fraction lost.                 */ 
    73     pj_uint32_t     total_lost_0:8; /**< Total lost, bit 0-7.           */ 
     73    pj_uint32_t     total_lost_2:8; /**< Total lost, bit 0-7.           */ 
    7474    pj_uint32_t     total_lost_1:8; /**< Total lost, bit 8-15.          */ 
    75     pj_uint32_t     total_lost_2:8; /**< Total lost, bit 16-23.         */ 
     75    pj_uint32_t     total_lost_0:8; /**< Total lost, bit 16-23.         */ 
    7676#endif   
    7777    pj_uint32_t     last_seq;       /**< Last sequence number.          */ 
     
    112112 
    113113/** 
    114  * RTCP packet. 
     114 * This structure declares default RTCP packet (SR) that is sent by pjmedia. 
     115 * Incoming RTCP packet may have different format, and must be parsed 
     116 * manually by application. 
    115117 */ 
    116118struct pjmedia_rtcp_pkt 
Note: See TracChangeset for help on using the changeset viewer.