Home
last modified time | relevance | path

Searched refs:rtclog_config (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/call/
Dcall.cc114 auto rtclog_config = std::make_unique<rtclog::StreamConfig>(); in CreateRtcLogStreamConfig() local
115 rtclog_config->remote_ssrc = config.rtp.remote_ssrc; in CreateRtcLogStreamConfig()
116 rtclog_config->local_ssrc = config.rtp.local_ssrc; in CreateRtcLogStreamConfig()
117 rtclog_config->rtx_ssrc = config.rtp.rtx_ssrc; in CreateRtcLogStreamConfig()
118 rtclog_config->rtcp_mode = config.rtp.rtcp_mode; in CreateRtcLogStreamConfig()
119 rtclog_config->rtp_extensions = config.rtp.extensions; in CreateRtcLogStreamConfig()
124 rtclog_config->codecs.emplace_back(d.video_format.name, d.payload_type, in CreateRtcLogStreamConfig()
127 return rtclog_config; in CreateRtcLogStreamConfig()
133 auto rtclog_config = std::make_unique<rtclog::StreamConfig>(); in CreateRtcLogStreamConfig() local
134 rtclog_config->local_ssrc = config.rtp.ssrcs[ssrc_index]; in CreateRtcLogStreamConfig()
[all …]
/external/webrtc/audio/
Daudio_send_stream.cc68 auto rtclog_config = std::make_unique<rtclog::StreamConfig>(); in UpdateEventLogStreamConfig() local
69 rtclog_config->local_ssrc = config.rtp.ssrc; in UpdateEventLogStreamConfig()
70 rtclog_config->rtp_extensions = config.rtp.extensions; in UpdateEventLogStreamConfig()
72 rtclog_config->codecs.emplace_back(config.send_codec_spec->format.name, in UpdateEventLogStreamConfig()
76 std::move(rtclog_config))); in UpdateEventLogStreamConfig()