Home
last modified time | relevance | path

Searched refs:aux_rtp_header_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_impl.cc722 if (!aux_rtp_header_) { in IncomingPayload()
725 aux_rtp_header_.reset(new WebRtcRTPHeader); in IncomingPayload()
726 aux_rtp_header_->header.payloadType = payload_type; in IncomingPayload()
728 aux_rtp_header_->header.ssrc = 0; in IncomingPayload()
729 aux_rtp_header_->header.markerBit = false; in IncomingPayload()
731 aux_rtp_header_->header.sequenceNumber = 0x1234; // Arbitrary. in IncomingPayload()
732 aux_rtp_header_->type.Audio.channel = 1; in IncomingPayload()
735 aux_rtp_header_->header.timestamp = timestamp; in IncomingPayload()
736 IncomingPacket(incoming_payload, payload_length, *aux_rtp_header_); in IncomingPayload()
738 aux_rtp_header_->header.sequenceNumber++; in IncomingPayload()
Daudio_coding_module_impl.h263 rtc::scoped_ptr<WebRtcRTPHeader> aux_rtp_header_; variable