Home
last modified time | relevance | path

Searched refs:GetIntFromJsonObject (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/webrtc/rtc_tools/rtp_generator/
H A Drtp_generator.cc70 if (!rtc::GetIntFromJsonObject(json, "duration_ms", &config.duration_ms)) { in ParseVideoSendStreamConfig()
74 if (!rtc::GetIntFromJsonObject(json, "video_width", &config.video_width)) { in ParseVideoSendStreamConfig()
78 if (!rtc::GetIntFromJsonObject(json, "video_height", &config.video_height)) { in ParseVideoSendStreamConfig()
82 if (!rtc::GetIntFromJsonObject(json, "video_fps", &config.video_fps)) { in ParseVideoSendStreamConfig()
86 if (!rtc::GetIntFromJsonObject(json, "num_squares", &config.num_squares)) { in ParseVideoSendStreamConfig()
110 if (!rtc::GetIntFromJsonObject(rtp_json, "payload_type", in ParseVideoSendStreamConfig()
/aosp_15_r20/external/webrtc/stats/
H A Drtc_stats_unittest.cc280 EXPECT_TRUE(rtc::GetIntFromJsonObject(json_output, "timestamp", &timestamp)); in TEST()
282 EXPECT_TRUE(rtc::GetIntFromJsonObject(json_output, "mInt32", &m_int32)); in TEST()
383 EXPECT_FALSE(rtc::GetIntFromJsonObject(json_output, "mUint32", &m_uint32)); in TEST()
384 EXPECT_FALSE(rtc::GetIntFromJsonObject(json_output, "mUint64", &m_uint64)); in TEST()
/aosp_15_r20/external/webrtc/rtc_base/strings/
H A Djson.h69 bool GetIntFromJsonObject(const Json::Value& in, absl::string_view k, int* out);
H A Djson.cc255 bool GetIntFromJsonObject(const Json::Value& in, in GetIntFromJsonObject() function
/aosp_15_r20/external/webrtc/api/audio/
H A Decho_canceller3_config_json.cc36 if (rtc::GetIntFromJsonObject(root, param_name, &v) && v >= 0) { in ReadParam()
44 if (rtc::GetIntFromJsonObject(root, param_name, &v)) { in ReadParam()
/aosp_15_r20/external/webrtc/examples/peerconnection/client/
H A Dconductor.cc383 !rtc::GetIntFromJsonObject(jmessage, kCandidateSdpMlineIndexName, in OnMessageFromPeer()