Home
last modified time | relevance | path

Searched refs:srcRootValue (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/src/dcamera_provider/
H A Ddcamera_provider.cpp60 cJSON *srcRootValue = cJSON_GetObjectItemCaseSensitive(rootValue, "SourceCodec"); in GetAbilityInfo() local
61 if (srcRootValue == nullptr || !cJSON_IsObject(srcRootValue)) { in GetAbilityInfo()
74 char *jsonSource = cJSON_Print(srcRootValue); in GetAbilityInfo()
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/src/dstream_operator/
H A Ddstream_operator.cpp640 cJSON *srcRootValue = cJSON_Parse(sourceCodecInfo.c_str()); in InitOutputConfigurations() local
641 CHECK_NULL_FREE_RETURN(srcRootValue, DCamRetCode::INVALID_ARGUMENT, rootValue); in InitOutputConfigurations()
642 if (!cJSON_IsObject(srcRootValue)) { in InitOutputConfigurations()
643 cJSON_Delete(srcRootValue); in InitOutputConfigurations()
649 sourceEncodeTypes_ = ParseEncoderTypes(srcRootValue); in InitOutputConfigurations()
653 cJSON_Delete(srcRootValue); in InitOutputConfigurations()
661 cJSON_Delete(srcRootValue); in InitOutputConfigurations()
668 cJSON_Delete(srcRootValue); in InitOutputConfigurations()
674 cJSON_Delete(srcRootValue); in InitOutputConfigurations()
681 cJSON_Delete(srcRootValue); in InitOutputConfigurations()
[all …]
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/
H A Ddcamera_source_dev.cpp392 cJSON *srcRootValue = cJSON_Parse(param->srcParam_.c_str()); in ParseEnableParam() local
393 if (srcRootValue == nullptr) { in ParseEnableParam()
402 cJSON_Delete(srcRootValue); in ParseEnableParam()
406 cJSON_AddItemToObject(abilityRootValue, "SourceCodec", srcRootValue); in ParseEnableParam()