Home
last modified time | relevance | path

Searched refs:max_packet_size (Results 1 – 25 of 36) sorted by relevance

12

/external/webrtc/modules/rtp_rtcp/source/
Drtcp_transceiver_config.cc37 if (max_packet_size < 100) { in Validate()
38 RTC_LOG(LS_ERROR) << debug_id << "max packet size " << max_packet_size in Validate()
42 if (max_packet_size > IP_PACKET_SIZE) { in Validate()
43 RTC_LOG(LS_ERROR) << debug_id << "max packet size " << max_packet_size in Validate()
Drtcp_sender.cc88 size_t max_packet_size) in PacketSender() argument
89 : callback_(callback), max_packet_size_(max_packet_size) { in PacketSender()
90 RTC_CHECK_LE(max_packet_size, IP_PACKET_SIZE); in PacketSender()
295 void RTCPSender::SetMaxRtpPacketSize(size_t max_packet_size) { in SetMaxRtpPacketSize() argument
297 max_packet_size_ = max_packet_size; in SetMaxRtpPacketSize()
702 size_t max_packet_size; in SendCompoundRTCP() local
711 max_packet_size = max_packet_size_; in SendCompoundRTCP()
714 size_t bytes_sent = container.SendPackets(max_packet_size); in SendCompoundRTCP()
1000 size_t max_packet_size; in SendCombinedRtcpPacket() local
1009 max_packet_size = max_packet_size_; in SendCombinedRtcpPacket()
[all …]
Drtcp_transceiver_impl.cc62 size_t max_packet_size) in PacketSender() argument
63 : callback_(callback), max_packet_size_(max_packet_size) { in PacketSender()
64 RTC_CHECK_LE(max_packet_size, IP_PACKET_SIZE); in PacketSender()
392 PacketSender sender(send_packet, config_.max_packet_size); in SendPeriodicCompoundPacket()
402 PacketSender sender(send_packet, config_.max_packet_size); in SendCombinedRtcpPacket()
416 PacketSender sender(send_packet, config_.max_packet_size); in SendImmediateFeedback()
Drtcp_transceiver_config.h62 size_t max_packet_size = 1200; member
Dfec_test_helper.cc35 uint32_t max_packet_size, in MediaPacketGenerator() argument
39 max_packet_size_(max_packet_size), in MediaPacketGenerator()
Dfec_test_helper.h36 uint32_t max_packet_size,
Drtp_sender.cc267 void RTPSender::SetMaxRtpPacketSize(size_t max_packet_size) { in SetMaxRtpPacketSize() argument
268 RTC_DCHECK_GE(max_packet_size, 100); in SetMaxRtpPacketSize()
269 RTC_DCHECK_LE(max_packet_size, IP_PACKET_SIZE); in SetMaxRtpPacketSize()
271 max_packet_size_ = max_packet_size; in SetMaxRtpPacketSize()
Drtp_sender.h71 void SetMaxRtpPacketSize(size_t max_packet_size)
Drtp_rtcp_impl2.h219 void SetMaxRtpPacketSize(size_t max_packet_size) override;
Drtp_rtcp_impl.h227 void SetMaxRtpPacketSize(size_t max_packet_size) override;
Drtcp_sender.h136 void SetMaxRtpPacketSize(size_t max_packet_size)
/external/OpenCL-CTS/test_conformance/pipes/
Dmain.cpp35 cl_uint max_packet_size; in InitCL() local
37 sizeof(max_packet_size), &max_packet_size, NULL); in InitCL()
43 if ((max_packet_size == 0) && (version >= Version(3, 0))) in InitCL()
/external/openscreen/cast/streaming/
Drtp_packetizer.cc41 int max_packet_size) in RtpPacketizer() argument
44 max_packet_size_(max_packet_size), in RtpPacketizer()
Drtp_packetizer.h31 int max_packet_size);
Dsender_packet_router.h86 int max_packet_size() const { return packet_buffer_size_; } in max_packet_size() function
/external/webrtc/rtc_base/
Dasync_tcp_socket.cc66 size_t max_packet_size) in AsyncTCPSocketBase() argument
69 max_insize_(max_packet_size), in AsyncTCPSocketBase()
70 max_outsize_(max_packet_size) { in AsyncTCPSocketBase()
Dasync_tcp_socket.h32 AsyncTCPSocketBase(AsyncSocket* socket, bool listen, size_t max_packet_size);
/external/webrtc/call/
Drtp_config.h95 size_t max_packet_size = kDefaultMaxPacketSize; member
Drtp_video_sender.cc426 stream.rtp_rtcp->SetMaxRtpPacketSize(rtp_config_.max_packet_size); in RtpVideoSender()
743 std::min(rtp_config_.max_packet_size, in OnTransportOverheadChanged()
769 rtp_config_.max_packet_size + transport_overhead_bytes_per_packet_); in OnBitrateUpdated()
948 rtp_config_.max_packet_size); in SetEncodingData()
Drtp_config.cc93 ss << ", max_packet_size: " << max_packet_size; in ToString()
/external/OpenCL-CTS/test_conformance/api/
Dtest_kernel_arg_info.cpp309 cl_uint max_packet_size = 0; in device_supports_pipes() local
312 sizeof(max_packet_size), &max_packet_size, nullptr); in device_supports_pipes()
314 if ((max_packet_size == 0) && (version >= Version(3, 0))) in device_supports_pipes()
/external/python/cpython2/Lib/
DSocketServer.py489 max_packet_size = 8192 variable in UDPServer
492 data, client_addr = self.socket.recvfrom(self.max_packet_size)
/external/python/cpython3/Lib/
Dsocketserver.py524 max_packet_size = 8192 variable in UDPServer
527 data, client_addr = self.socket.recvfrom(self.max_packet_size)
/external/webrtc/test/scenario/
Dscenario_config.h64 DataSize max_packet_size = DataSize::Bytes(1400); member
/external/webrtc/video/
Dvideo_send_stream.cc208 config_.rtp.max_packet_size - CalculateMaxHeaderSize(config_.rtp)); in ReconfigureVideoEncoder()

12