Home
last modified time | relevance | path

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

/external/webrtc/test/
Dcall_config_utils.cc89 Json::Value rtp_json; in GenerateVideoReceiveStreamJsonConfig() local
90 rtp_json["remote_ssrc"] = config.rtp.remote_ssrc; in GenerateVideoReceiveStreamJsonConfig()
91 rtp_json["local_ssrc"] = config.rtp.local_ssrc; in GenerateVideoReceiveStreamJsonConfig()
92 rtp_json["rtcp_mode"] = config.rtp.rtcp_mode == RtcpMode::kCompound in GenerateVideoReceiveStreamJsonConfig()
95 rtp_json["transport_cc"] = config.rtp.transport_cc; in GenerateVideoReceiveStreamJsonConfig()
96 rtp_json["lntf"]["enabled"] = config.rtp.lntf.enabled; in GenerateVideoReceiveStreamJsonConfig()
97 rtp_json["nack"]["rtp_history_ms"] = config.rtp.nack.rtp_history_ms; in GenerateVideoReceiveStreamJsonConfig()
98 rtp_json["ulpfec_payload_type"] = config.rtp.ulpfec_payload_type; in GenerateVideoReceiveStreamJsonConfig()
99 rtp_json["red_payload_type"] = config.rtp.red_payload_type; in GenerateVideoReceiveStreamJsonConfig()
100 rtp_json["rtx_ssrc"] = config.rtp.rtx_ssrc; in GenerateVideoReceiveStreamJsonConfig()
[all …]
/external/webrtc/rtc_tools/rtp_generator/
Drtp_generator.cc92 Json::Value rtp_json; in ParseVideoSendStreamConfig() local
93 if (!rtc::GetValueFromJsonObject(json, "rtp", &rtp_json)) { in ParseVideoSendStreamConfig()
97 if (!rtc::GetStringFromJsonObject(rtp_json, "payload_name", in ParseVideoSendStreamConfig()
109 if (!rtc::GetIntFromJsonObject(rtp_json, "payload_type", in ParseVideoSendStreamConfig()