Home | History | Annotate | Download | only in acm2

Lines Matching refs:rtp_info

35     const WebRtcRTPHeader& rtp_info,
45 rtp_info.header.payloadType != audio_payload_type_));
48 const RTPHeader* current_header = &rtp_info.header;
68 audio_payload_type_ = rtp_info.header.payloadType;
72 RecordLastPacket(rtp_info, receive_timestamp, type);
107 RecordLastPacket(rtp_info, receive_timestamp, type);
130 memcpy(&sync_stream->rtp_info, &rtp_info, sizeof(rtp_info));
131 sync_stream->rtp_info.header.payloadType = audio_payload_type_;
142 sync_stream->rtp_info.header.sequenceNumber -= sequence_number_update;
144 sync_stream->rtp_info.header.timestamp -= timestamp_update;
145 sync_stream->rtp_info.header.payloadType = audio_payload_type_;
150 RecordLastPacket(rtp_info, receive_timestamp, type);
154 void InitialDelayManager::RecordLastPacket(const WebRtcRTPHeader& rtp_info,
159 memcpy(&last_packet_rtp_info_, &rtp_info, sizeof(rtp_info));
197 memcpy(&sync_stream->rtp_info, &last_packet_rtp_info_,
201 sync_stream->rtp_info.header.sequenceNumber += sync_offset;
202 sync_stream->rtp_info.header.timestamp += timestamp_update;
207 sync_stream->rtp_info.header.payloadType = audio_payload_type_;