Searched refs:send_params (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/talk/app/webrtc/ |
D | datachannel.cc | 545 cricket::SendDataParams send_params; in SendDataMessage() local 548 send_params.ordered = config_.ordered; in SendDataMessage() 551 send_params.ordered = true; in SendDataMessage() 556 send_params.max_rtx_count = config_.maxRetransmits; in SendDataMessage() 557 send_params.max_rtx_ms = config_.maxRetransmitTime; in SendDataMessage() 558 send_params.ssrc = config_.id; in SendDataMessage() 560 send_params.ssrc = send_ssrc_; in SendDataMessage() 562 send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT; in SendDataMessage() 565 bool success = provider_->SendData(send_params, buffer.data, &send_result); in SendDataMessage() 627 cricket::SendDataParams send_params; in SendControlMessage() local [all …]
|
/external/libchrome/ipc/ |
D | ipc_message_templates.h | 193 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/talk/session/media/ |
D | srtpfilter.cc | 352 const CryptoParams& send_params = in DoSetAnswer() local 356 if (!ApplyParams(send_params, recv_params)) { in DoSetAnswer() 410 bool SrtpFilter::ApplyParams(const CryptoParams& send_params, in ApplyParams() argument 415 if (applied_send_params_.cipher_suite == send_params.cipher_suite && in ApplyParams() 416 applied_send_params_.key_params == send_params.key_params && in ApplyParams() 427 ret = (ParseKeyParams(send_params.key_params, send_key, sizeof(send_key)) && in ApplyParams() 432 rtc::SrtpCryptoSuiteFromName(send_params.cipher_suite), send_key, in ApplyParams() 440 << " send cipher_suite " << send_params.cipher_suite in ApplyParams() 442 applied_send_params_ = send_params; in ApplyParams()
|
D | channel.cc | 164 RtpSendParameters<Codec, Options>* send_params) { in RtpSendParametersFromMediaDescription() argument 165 RtpParametersFromMediaDescription(desc, send_params); in RtpSendParametersFromMediaDescription() 166 send_params->max_bandwidth_bps = desc->bandwidth(); in RtpSendParametersFromMediaDescription() 1559 AudioSendParameters send_params = last_send_params_; in SetRemoteContent_w() local 1560 RtpSendParametersFromMediaDescription(audio, &send_params); in SetRemoteContent_w() 1562 send_params.options.adjust_agc_delta = rtc::Optional<int>(kAgcMinus10db); in SetRemoteContent_w() 1564 if (!media_channel()->SetSendParameters(send_params)) { in SetRemoteContent_w() 1569 last_send_params_ = send_params; in SetRemoteContent_w() 1831 VideoSendParameters send_params = last_send_params_; in SetRemoteContent_w() local 1832 RtpSendParametersFromMediaDescription(video, &send_params); in SetRemoteContent_w() [all …]
|
D | srtpfilter.h | 156 bool ApplyParams(const CryptoParams& send_params,
|
/external/webrtc/talk/media/webrtc/ |
D | webrtcvideoengine2.h | 248 const VideoSendParameters& send_params); 257 void SetSendParameters(const VideoSendParameters& send_params);
|
D | webrtcvideoengine2.cc | 1608 const VideoSendParameters& send_params) in WebRtcVideoSendStream() argument 1629 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size in WebRtcVideoSendStream() 1949 const VideoSendParameters& send_params) { in SetSendParameters() argument 1951 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size in SetSendParameters()
|