Searched defs:rtp_info (Results 1 - 7 of 7) sorted by relevance
/external/webrtc/webrtc/modules/audio_coding/acm2/ |
H A D | initial_delay_manager.cc | 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 34 UpdateLastReceivedPacket( const WebRtcRTPHeader& rtp_info, uint32_t receive_timestamp, PacketType type, bool new_codec, int sample_rate_hz, SyncStream* sync_stream) argument 154 RecordLastPacket(const WebRtcRTPHeader& rtp_info, uint32_t receive_timestamp, PacketType type) argument [all...] |
H A D | initial_delay_manager.h | 32 memset(&rtp_info, 0, sizeof(rtp_info)); 38 WebRtcRTPHeader rtp_info; member in struct:webrtc::acm2::InitialDelayManager::SyncStream 91 void RecordLastPacket(const WebRtcRTPHeader& rtp_info,
|
H A D | initial_delay_manager_unittest.cc | 32 void InitRtpInfo(WebRtcRTPHeader* rtp_info) { argument 33 memset(rtp_info, 0, sizeof(*rtp_info)); 34 rtp_info->header.markerBit = false; 35 rtp_info->header.payloadType = kAudioPayloadType; 36 rtp_info->header.sequenceNumber = 1234; 37 rtp_info->header.timestamp = 0xFFFFFFFD; // Close to wrap around. 38 rtp_info->header.ssrc = 0x87654321; // Arbitrary. 39 rtp_info->header.numCSRCs = 0; // Arbitrary. 40 rtp_info 48 ForwardRtpHeader(int n, WebRtcRTPHeader* rtp_info, uint32_t* rtp_receive_timestamp) argument 56 NextRtpHeader(WebRtcRTPHeader* rtp_info, uint32_t* rtp_receive_timestamp) argument 74 GetNextRtpHeader(WebRtcRTPHeader* rtp_info, uint32_t* rtp_receive_timestamp) const argument [all...] |
/external/webrtc/webrtc/modules/video_coding/ |
H A D | video_coding_robustness_unittest.cc | 58 WebRtcRTPHeader rtp_info; local 59 memset(&rtp_info, 0, sizeof(rtp_info)); 60 rtp_info.frameType = frame_type; 61 rtp_info.header.timestamp = timestamp; 62 rtp_info.header.sequenceNumber = seq_no; 63 rtp_info.header.markerBit = marker_bit; 64 rtp_info.header.payloadType = video_codec_.plType; 65 rtp_info.type.Video.codec = kRtpVideoVp8; 66 rtp_info [all...] |
/external/webrtc/webrtc/modules/audio_coding/test/ |
H A D | TestAllCodecs.cc | 64 WebRtcRTPHeader rtp_info; local 67 rtp_info.header.markerBit = false; 68 rtp_info.header.ssrc = 0; 69 rtp_info.header.sequenceNumber = sequence_number_++; 70 rtp_info.header.payloadType = payload_type; 71 rtp_info.header.timestamp = timestamp; 73 rtp_info.type.Audio.isCNG = true; 75 rtp_info.type.Audio.isCNG = false; 83 rtp_info.type.Audio.channel = 1; 86 status = receiver_acm_->IncomingPacket(payload_data_, payload_size, rtp_info); [all...] |
H A D | TestStereo.cc | 53 WebRtcRTPHeader rtp_info; local 56 rtp_info.header.markerBit = false; 57 rtp_info.header.ssrc = 0; 58 rtp_info.header.sequenceNumber = seq_no_++; 59 rtp_info.header.payloadType = payload_type; 60 rtp_info.header.timestamp = timestamp; 68 rtp_info.type.Audio.isCNG = false; 69 rtp_info.type.Audio.channel = static_cast<int>(codec_mode_); 71 rtp_info.type.Audio.isCNG = true; 72 rtp_info [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
H A D | neteq_unittest.cc | 300 WebRtcRTPHeader* rtp_info); 303 WebRtcRTPHeader* rtp_info, 496 WebRtcRTPHeader* rtp_info) { 497 rtp_info->header.sequenceNumber = frame_index; 498 rtp_info->header.timestamp = timestamp; 499 rtp_info->header.ssrc = 0x1234; // Just an arbitrary SSRC. 500 rtp_info->header.payloadType = 94; // PCM16b WB codec. 501 rtp_info->header.markerBit = 0; 506 WebRtcRTPHeader* rtp_info, 509 rtp_info 494 PopulateRtpInfo(int frame_index, int timestamp, WebRtcRTPHeader* rtp_info) argument 504 PopulateCng(int frame_index, int timestamp, WebRtcRTPHeader* rtp_info, uint8_t* payload, size_t* payload_len) argument 600 WebRtcRTPHeader rtp_info; local 648 WebRtcRTPHeader rtp_info; local 679 WebRtcRTPHeader rtp_info; local 722 WebRtcRTPHeader rtp_info; local 748 WebRtcRTPHeader rtp_info; local 797 WebRtcRTPHeader rtp_info; local 815 WebRtcRTPHeader rtp_info; local 925 WebRtcRTPHeader rtp_info; local 941 WebRtcRTPHeader rtp_info; local 1037 WebRtcRTPHeader rtp_info; local 1176 WebRtcRTPHeader rtp_info; local 1263 WebRtcRTPHeader rtp_info; local 1340 WebRtcRTPHeader rtp_info; local 1435 WebRtcRTPHeader rtp_info; local 1613 WebRtcRTPHeader rtp_info; local [all...] |
Completed in 139 milliseconds