Home
last modified time | relevance | path

Searched refs:geoLocation (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/docs/zh-cn/release-notes/changelogs/v3.2-beta5/
H A DReadme.md17 - [ohos.geoLocation](changelogs-ohos-geolocation.md)
/ohos5.0/docs/en/release-notes/changelogs/v3.2-beta5/
H A DReadme-EN.md17 - [ohos.geoLocation](changelogs-ohos-geolocation.md)
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/recorder/
H A Daudio_recorder_napi.cpp333 napi_value geoLocation = nullptr; in GetAudioProperties() local
334 napi_get_named_property(env, args, "location", &geoLocation); in GetAudioProperties()
337 (void)CommonNapi::GetPropertyDouble(env, geoLocation, "latitude", tempLatitude); in GetAudioProperties()
338 (void)CommonNapi::GetPropertyDouble(env, geoLocation, "longitude", tempLongitude); in GetAudioProperties()
H A Dvideo_recorder_napi.cpp687 napi_value geoLocation = nullptr; in GetConfig() local
688 napi_get_named_property(env, args, "location", &geoLocation); in GetConfig()
691 (void)CommonNapi::GetPropertyDouble(env, geoLocation, "latitude", tempLatitude); in GetConfig()
692 (void)CommonNapi::GetPropertyDouble(env, geoLocation, "longitude", tempLongitude); in GetConfig()
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/recorder/
H A Dhirecorder_impl.cpp839 GeoLocation geoLocation = static_cast<const GeoLocation&>(recParam); in ConfigureMuxer() local
840 muxerFormat_->Set<Tag::MEDIA_LATITUDE>(geoLocation.latitude); in ConfigureMuxer()
841 muxerFormat_->Set<Tag::MEDIA_LONGITUDE>(geoLocation.longitude); in ConfigureMuxer()
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp2034 napi_value geoLocation = nullptr; in GetLocation() local
2036 …CHECK_AND_RETURN_RET(napi_get_named_property(env, args, "location", &geoLocation) == napi_ok, fals… in GetLocation()
2037 napi_status status = napi_typeof(env, geoLocation, &valueType); in GetLocation()
2044 …CHECK_AND_RETURN_RET(CommonNapi::GetPropertyDouble(env, geoLocation, "latitude", tempLatitude), fa… in GetLocation()
2045 …CHECK_AND_RETURN_RET(CommonNapi::GetPropertyDouble(env, geoLocation, "longitude", tempLongitude), … in GetLocation()
/ohos5.0/foundation/multimedia/player_framework/services/services/recorder/server/
H A Drecorder_server.cpp748 GeoLocation geoLocation(latitude, longitude); in SetLocation() local
750 return recorderEngine_->Configure(DUMMY_SOURCE_ID, geoLocation); in SetLocation()