Home | History | Annotate | Download | only in testbed

Lines Matching defs:rtp_timestamp

115     uint32_t rtp_timestamp = ptr[4] << 24;
116 rtp_timestamp += ptr[5] << 16;
117 rtp_timestamp += ptr[6] << 8;
118 rtp_timestamp += ptr[7];
121 _firstRTPTimestamp = rtp_timestamp;
125 _lastSendRTPTimestamp != rtp_timestamp) {
126 _send_frame_callback->FrameSent(rtp_timestamp);
129 _lastSendRTPTimestamp = rtp_timestamp;
225 if (previous_drop_ && _firstRTPTimestamp != rtp_timestamp)
441 uint32_t rtp_timestamp = ptr[4] << 24;
442 rtp_timestamp += ptr[5] << 16;
443 rtp_timestamp += ptr[6] << 8;
444 rtp_timestamp += ptr[7];
446 _lastReceiveRTPTimestamp != rtp_timestamp) {
447 _receive_frame_callback->FrameReceived(rtp_timestamp);
449 _lastReceiveRTPTimestamp = rtp_timestamp;