Home
last modified time | relevance | path

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

/aosp_15_r20/external/webrtc/api/audio/
H A Decho_canceller3_config_json.cc62 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
83 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
102 if (rtc::GetValueFromJsonObject(root, param_name, &subsection)) { in ReadParam()
119 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
136 if (rtc::GetValueFromJsonObject(root, param_name, &json_array)) { in ReadParam()
173 success = rtc::GetValueFromJsonObject(root, "aec3", &aec3_root); in Aec3ConfigFromJsonString()
181 if (rtc::GetValueFromJsonObject(aec3_root, "buffering", &section)) { in Aec3ConfigFromJsonString()
188 if (rtc::GetValueFromJsonObject(aec3_root, "delay", &section)) { in Aec3ConfigFromJsonString()
206 if (rtc::GetValueFromJsonObject(section, "delay_selection_thresholds", in Aec3ConfigFromJsonString()
226 if (rtc::GetValueFromJsonObject(aec3_root, "filter", &section)) { in Aec3ConfigFromJsonString()
[all …]
/aosp_15_r20/external/webrtc/rtc_base/strings/
H A Djson.cc243 bool GetValueFromJsonObject(const Json::Value& in, in GetValueFromJsonObject() function
259 return GetValueFromJsonObject(in, k, &x) && GetIntFromJson(x, out); in GetIntFromJsonObject()
266 return GetValueFromJsonObject(in, k, &x) && GetUIntFromJson(x, out); in GetUIntFromJsonObject()
273 return GetValueFromJsonObject(in, k, &x) && GetStringFromJson(x, out); in GetStringFromJsonObject()
280 return GetValueFromJsonObject(in, k, &x) && GetBoolFromJson(x, out); in GetBoolFromJsonObject()
287 return GetValueFromJsonObject(in, k, &x) && GetDoubleFromJson(x, out); in GetDoubleFromJsonObject()
H A Djson_unittest.cc162 EXPECT_TRUE(GetValueFromJsonObject(o, "int", &out)); in TEST()
163 EXPECT_TRUE(GetValueFromJsonObject(o, "bool", &out)); in TEST()
164 EXPECT_FALSE(GetValueFromJsonObject(o, "foo", &out)); in TEST()
165 EXPECT_FALSE(GetValueFromJsonObject(o, "", &out)); in TEST()
H A Djson.h66 bool GetValueFromJsonObject(const Json::Value& in,
/aosp_15_r20/external/webrtc/stats/
H A Drtc_stats_unittest.cc289 rtc::GetValueFromJsonObject(json_output, "mSequenceBool", &json_array)); in TEST()
293 rtc::GetValueFromJsonObject(json_output, "mSequenceInt32", &json_array)); in TEST()
297 rtc::GetValueFromJsonObject(json_output, "mSequenceDouble", &json_array)); in TEST()
301 rtc::GetValueFromJsonObject(json_output, "mSequenceString", &json_array)); in TEST()
306 rtc::GetValueFromJsonObject(json_output, "mMapStringDouble", &json_map)); in TEST()
348 rtc::GetValueFromJsonObject(json_output, "mSequenceInt64", &json_array)); in TEST()
366 rtc::GetValueFromJsonObject(json_output, "mMapStringUint64", &json_map)); in TEST()
/aosp_15_r20/external/webrtc/rtc_tools/rtp_generator/
H A Drtp_generator.cc94 if (!rtc::GetValueFromJsonObject(json, "rtp", &rtp_json)) { in ParseVideoSendStreamConfig()