Searched refs:GetIntFromJsonObject (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/webrtc/rtc_tools/rtp_generator/ |
H A D | rtp_generator.cc | 70 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 D | rtc_stats_unittest.cc | 280 EXPECT_TRUE(rtc::GetIntFromJsonObject(json_output, "timestamp", ×tamp)); 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 D | json.h | 69 bool GetIntFromJsonObject(const Json::Value& in, absl::string_view k, int* out);
|
H A D | json.cc | 255 bool GetIntFromJsonObject(const Json::Value& in, in GetIntFromJsonObject() function
|
/aosp_15_r20/external/webrtc/api/audio/ |
H A D | echo_canceller3_config_json.cc | 36 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 D | conductor.cc | 383 !rtc::GetIntFromJsonObject(jmessage, kCandidateSdpMlineIndexName, in OnMessageFromPeer()
|