Home
last modified time | relevance | path

Searched refs:packet_header (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddecision_logic_fax.cc26 const RTPHeader* packet_header, in GetDecisionSpecialized() argument
34 if (packet_header) { in GetDecisionSpecialized()
35 available_timestamp = packet_header->timestamp; in GetDecisionSpecialized()
37 decoder_database_->IsComfortNoise(packet_header->payloadType); in GetDecisionSpecialized()
49 if (!packet_header) { in GetDecisionSpecialized()
Ddecision_logic_normal.cc31 const RTPHeader* packet_header, in GetDecisionSpecialized() argument
38 if (!packet_header) { in GetDecisionSpecialized()
48 if (packet_header) { in GetDecisionSpecialized()
49 available_timestamp = packet_header->timestamp; in GetDecisionSpecialized()
51 decoder_database_->IsComfortNoise(packet_header->payloadType); in GetDecisionSpecialized()
59 if (!packet_header) { in GetDecisionSpecialized()
Ddecision_logic.h79 const RTPHeader* packet_header,
138 const RTPHeader* packet_header,
Ddecision_logic.cc108 const RTPHeader* packet_header, in GetDecision() argument
141 packet_header, prev_mode, play_dtmf, in GetDecision()
Ddecision_logic_fax.h50 const RTPHeader* packet_header,
Ddecision_logic_normal.h54 const RTPHeader* packet_header,
/external/libpcap/
Dpcap-enet.c32 struct packet_header { struct
51 register struct packet_header *ph; in readloop() argument
60 struct packet_header hdr; in readloop()
75 ph = (struct packet_header *)bp; in readloop()
Dpcap-sita.c963 unsigned char packet_header[HEADER_SIZE]; in pcap_read_acn() local
970 handle->bp = packet_header; in pcap_read_acn()
973 pcap_header.ts.tv_sec = ntohl(*(uint32_t *)&packet_header[0]); /* tv_sec */ in pcap_read_acn()
974 pcap_header.ts.tv_usec = ntohl(*(uint32_t *)&packet_header[4]); /* tv_usec */ in pcap_read_acn()
975 pcap_header.caplen = ntohl(*(uint32_t *)&packet_header[8]); /* caplen */ in pcap_read_acn()
976 pcap_header.len = ntohl(*(uint32_t *)&packet_header[12]); /* len */ in pcap_read_acn()
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
Drtc_event_log_source.cc84 uint8_t* packet_header = new uint8_t[rtp_packet->header().size()]; in NextPacket() local
85 memcpy(packet_header, rtp_packet->header().data(), in NextPacket()
87 Packet* packet = new Packet(packet_header, rtp_packet->header().size(), in NextPacket()