Ignore:
Timestamp:
08/24/10 20:27:38 (21 months ago)
Author:
shiretu
Message:

-- added bandwidth filter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/thelib/src/protocols/rtp/connectivity/outboundconnectivity.cpp

    r96 r102  
    423423 
    424424        //6. RTP 
    425         FINEST("rate: %d", rate); 
     425        //FINEST("rate: %d", rate); 
    426426        double rtpDouble = ((currentTime - _startupTime) / (double) CLOCKS_PER_SEC) * rate; 
    427         FINEST("rtpDouble: %.2f", rtpDouble); 
     427        //FINEST("rtpDouble: %.2f", rtpDouble); 
    428428        uint32_t rtp = (uint32_t) rtpDouble; 
    429         FINEST("rtp: %d", rtp); 
     429        //FINEST("rtp: %d", rtp); 
     430        //uint32_t packetRtp = ntohlp(pSrc + 4); 
     431        //FINEST("packetRtp: %d", packetRtp); 
     432        //FINEST("diff: %.0f", (double) packetRtp - (double) rtp); 
    430433        put_htonl(pDest + 16, rtp); 
    431434        //memcpy(pDest + 16, pSrc + 4, 4); 
Note: See TracChangeset for help on using the changeset viewer.