Home
last modified time | relevance | path

Searched refs:send_params (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/media/sctp/
Dsctp_transport_reliability_unittest.cc159 cricket::SendDataParams send_params, in SctpDataSender() argument
164 send_params_(send_params), in SctpDataSender()
340 cricket::SendDataParams send_params) in SctpPingPong() argument
349 send_params_(send_params) { in SctpPingPong()
654 cricket::SendDataParams send_params; in TEST_F() local
655 send_params.sid = -1; in TEST_F()
656 send_params.ordered = true; in TEST_F()
657 send_params.reliable = true; in TEST_F()
658 send_params.max_rtx_count = 0; in TEST_F()
659 send_params.max_rtx_ms = 0; in TEST_F()
[all …]
Dsctp_transport.h116 const SendDataParams& send_params) in OutgoingMessage() argument
117 : buffer_(buffer), send_params_(send_params) {} in OutgoingMessage()
130 SendDataParams send_params() const { return send_params_; } in send_params() function
Dsctp_transport.cc630 << message->send_params().sid in SendMessageInternal()
634 if (message->send_params().type != DMT_CONTROL) { in SendMessageInternal()
635 auto it = stream_status_by_sid_.find(message->send_params().sid); in SendMessageInternal()
641 << message->send_params().sid; in SendMessageInternal()
653 sctp_sendv_spa spa = CreateSctpSendParams(message->send_params()); in SendMessageInternal()
/external/webrtc/pc/
Dchannel.cc118 RtpSendParameters<Codec>* send_params) { in RtpSendParametersFromMediaDescription() argument
120 send_params); in RtpSendParametersFromMediaDescription()
121 send_params->max_bandwidth_bps = desc->bandwidth(); in RtpSendParametersFromMediaDescription()
122 send_params->extmap_allow_mixed = desc->extmap_allow_mixed(); in RtpSendParametersFromMediaDescription()
919 AudioSendParameters send_params = last_send_params_; in SetRemoteContent_w() local
922 webrtc::RtpTransceiverDirectionHasRecv(audio->direction()), &send_params); in SetRemoteContent_w()
923 send_params.mid = content_name(); in SetRemoteContent_w()
925 bool parameters_applied = media_channel()->SetSendParameters(send_params); in SetRemoteContent_w()
934 last_send_params_ = send_params; in SetRemoteContent_w()
1032 VideoSendParameters send_params = last_send_params_; in SetLocalContent_w() local
[all …]
Dsrtp_filter.cc193 bool SrtpFilter::ApplySendParams(const CryptoParams& send_params) { in ApplySendParams() argument
194 if (applied_send_params_.cipher_suite == send_params.cipher_suite && in ApplySendParams()
195 applied_send_params_.key_params == send_params.key_params) { in ApplySendParams()
202 send_cipher_suite_ = rtc::SrtpCryptoSuiteFromName(send_params.cipher_suite); in ApplySendParams()
206 << send_params.cipher_suite; in ApplySendParams()
215 << send_params.cipher_suite; in ApplySendParams()
220 return ParseKeyParams(send_params.key_params, send_key_.data(), in ApplySendParams()
Dsctp_data_channel.cc613 cricket::SendDataParams send_params; in SendDataMessage() local
615 send_params.ordered = config_.ordered; in SendDataMessage()
618 send_params.ordered = true; in SendDataMessage()
624 send_params.max_rtx_count = in SendDataMessage()
626 send_params.max_rtx_ms = in SendDataMessage()
628 send_params.sid = config_.id; in SendDataMessage()
629 send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT; in SendDataMessage()
632 bool success = provider_->SendData(send_params, buffer.data, &send_result); in SendDataMessage()
698 cricket::SendDataParams send_params; in SendControlMessage() local
699 send_params.sid = config_.id; in SendControlMessage()
[all …]
Ddata_channel_controller.cc565 SendDataParams send_params; in DataChannelSendData() local
566 send_params.type = ToWebrtcDataMessageType(params.type); in DataChannelSendData()
567 send_params.ordered = params.ordered; in DataChannelSendData()
569 send_params.max_rtx_count = params.max_rtx_count; in DataChannelSendData()
571 send_params.max_rtx_ms = params.max_rtx_ms; in DataChannelSendData()
575 RTC_FROM_HERE, [this, params, send_params, payload] { in DataChannelSendData()
576 return data_channel_transport()->SendData(params.sid, send_params, in DataChannelSendData()
Drtp_data_channel.cc369 cricket::SendDataParams send_params; in SendDataMessage() local
371 send_params.ssrc = send_ssrc_; in SendDataMessage()
372 send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT; in SendDataMessage()
375 bool success = provider_->SendData(send_params, buffer.data, &send_result); in SendDataMessage()
Dsrtp_filter.h106 bool ApplySendParams(const CryptoParams& send_params);
/external/libchrome/ipc/
Dipc_message_templates.h193 SendParam send_params; in Dispatch() local
194 bool ok = ReadSendParam(msg, &send_params); in Dispatch()
204 base::DispatchToMethod(obj, func, std::move(send_params), &reply_params); in Dispatch()
217 SendParam send_params; in DispatchDelayReply() local
218 bool ok = ReadSendParam(msg, &send_params); in DispatchDelayReply()
229 base::DispatchToMethod(obj, func, std::move(send_params), &t); in DispatchDelayReply()
239 SendParam send_params; in DispatchWithParamDelayReply() local
240 bool ok = ReadSendParam(msg, &send_params); in DispatchWithParamDelayReply()
254 std::tuple_cat(std::move(parameter_tuple), TupleForward(send_params)), in DispatchWithParamDelayReply()
/external/webrtc/media/engine/
Dwebrtc_video_engine.h334 const VideoSendParameters& send_params);
337 void SetSendParameters(const ChangedSendParameters& send_params);
Dwebrtc_video_engine.cc1938 const VideoSendParameters& send_params) in WebRtcVideoSendStream() argument
1955 parameters_.conference_mode = send_params.conference_mode; in WebRtcVideoSendStream()
1997 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size in WebRtcVideoSendStream()
2000 parameters_.config.rtp.mid = send_params.mid; in WebRtcVideoSendStream()
2001 rtp_parameters_.rtcp.reduced_size = send_params.rtcp.reduced_size; in WebRtcVideoSendStream()