Home
last modified time | relevance | path

Searched refs:deliveryMode (Results 1 – 25 of 37) sorted by relevance

12

/ohos5.0/docs/zh-cn/application-dev/reference/apis-media-library-kit/
H A D_media_library___request_options.md22 | [MediaLibrary_DeliveryMode](_media_asset_manager.md#medialibrary_deliverymode) [deliveryMode](#de…
28 ### deliveryMode subsection
31 MediaLibrary_DeliveryMode MediaLibrary_RequestOptions::deliveryMode
/ohos5.0/docs/en/application-dev/reference/apis-media-library-kit/
H A D_media_library___request_options.md22 | [MediaLibrary_DeliveryMode](_media_asset_manager.md#medialibrary_deliverymode) [deliveryMode](#de…
28 ### deliveryMode subsection
31 MediaLibrary_DeliveryMode MediaLibrary_RequestOptions::deliveryMode
/ohos5.0/foundation/multimedia/media_library/frameworks/native/media_library_asset_manager/src/
H A Dmedia_asset_manager_impl.cpp407 asyncContext->requestOptions.deliveryMode = requestOptions.deliveryMode; in NativeRequestImage()
449 asyncContext->requestOptions.deliveryMode = requestOptions.deliveryMode; in NativeRequestVideo()
508 asyncContext->requestOptions.deliveryMode = requestOptions.deliveryMode; in NativeRequestImageSource()
558 asyncContext->requestOptions.deliveryMode = requestOptions.deliveryMode; in NativeRequestMovingPhoto()
626 switch (asyncContext->requestOptions.deliveryMode) { in OnHandleRequestImage()
655 … MEDIA_ERR_LOG("Invalid delivery mode %{public}d", asyncContext->requestOptions.deliveryMode); in OnHandleRequestImage()
666 switch (asyncContext->requestOptions.deliveryMode) { in OnHandleRequestVideo()
677 … MEDIA_ERR_LOG("Invalid delivery mode %{public}d", asyncContext->requestOptions.deliveryMode); in OnHandleRequestVideo()
708 …ProcessImage(asyncContext->fileId, static_cast<int32_t>(asyncContext->requestOptions.deliveryMode), in RegisterTaskObserver()
712 void MediaAssetManagerImpl::ProcessImage(const int fileId, const int deliveryMode, const std::strin… in ProcessImage() argument
[all …]
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/src/
H A Dmultistages_photo_capture_manager.cpp90 int deliveryMode = std::stoi(columns[1]); // 1 indicates delivery mode in HandleMultiStagesOperation() local
91 ProcessImage(fileId, deliveryMode); in HandleMultiStagesOperation()
481 void MultiStagesPhotoCaptureManager::ProcessImage(int fileId, int deliveryMode) in ProcessImage() argument
493 static_cast<RequestPolicy>(deliveryMode)); in ProcessImage()
498 callerBundleName.c_str(), photoId.c_str(), deliveryMode, currentRequestCount); in ProcessImage()
499 if ((deliveryMode == static_cast<int32_t>(RequestPolicy::HIGH_QUALITY_MODE) || in ProcessImage()
500 deliveryMode == static_cast<int32_t>(RequestPolicy::BALANCE_MODE)) && in ProcessImage()
/ohos5.0/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/media_library_asset_manager_test/src/
H A Dmedia_library_asset_manager_test.cpp264 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_FAST_MODE;
312 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_HIGH_QUALITY_MODE;
360 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_BALANCED_MODE;
397 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_FAST_MODE;
432 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_BALANCED_MODE;
480 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_FAST_MODE;
515 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_HIGH_QUALITY_MODE;
550 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_HIGH_QUALITY_MODE;
607 requestOptions.deliveryMode = MediaLibrary_DeliveryMode::MEDIA_LIBRARY_HIGH_QUALITY_MODE;
/ohos5.0/foundation/multimedia/media_library/interfaces/kits/js/include/
H A Dmedia_asset_manager_napi.h74 DeliveryMode deliveryMode; member
133 static void ProcessImage(const int fileId, const int deliveryMode);
135 static void AddImage(const int fileId, DeliveryMode deliveryMode);
/ohos5.0/foundation/multimedia/media_library/frameworks/js/src/
H A Dmedia_asset_manager_napi.cpp301 void MediaAssetManagerNapi::ProcessImage(const int fileId, const int deliveryMode) in ProcessImage() argument
308 std::vector<std::string> columns { std::to_string(fileId), std::to_string(deliveryMode) }; in ProcessImage()
323 void MediaAssetManagerNapi::AddImage(const int fileId, DeliveryMode deliveryMode) in AddImage() argument
329 valuesBucket.Put("deliveryMode", static_cast<int>(deliveryMode)); in AddImage()
334 DeliveryMode& deliveryMode) in GetDeliveryMode() argument
355 deliveryMode = static_cast<DeliveryMode>(mode); in GetDeliveryMode()
564 if (ParseArgGetRequestOption(env, asyncContext->argv[PARAM2], asyncContext->deliveryMode, in ParseRequestMediaArgs()
610 if (ParseArgGetRequestOption(env, asyncContext->argv[PARAM2], asyncContext->deliveryMode, in ParseEfficentRequestMediaArgs()
844 switch (asyncContext->deliveryMode) { in OnHandleRequestImage()
880 switch (asyncContext->deliveryMode) { in OnHandleRequestVideo()
[all …]
/ohos5.0/foundation/multimedia/media_library/frameworks/native/c_api/media_asset_manger_capi/
H A Dmedia_asset_manager_capi.cpp41 dstRequestOption.deliveryMode = static_cast<NativeDeliveryMode>(srcRequestOption.deliveryMode); in OH_MediaAssetManager_Convert()
/ohos5.0/foundation/multimedia/media_library/interfaces/kits/c/
H A Dmedia_asset_base_capi.h201 MediaLibrary_DeliveryMode deliveryMode; member
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_ble_central_manager.h43 int32_t deliveryMode; member
/ohos5.0/foundation/multimedia/media_library/interfaces/inner_api/media_library_helper/include/
H A Dmedia_asset_manager_impl.h52 void ProcessImage(const int fileId, const int deliveryMode, const std::string &packageName);
H A Dmedia_asset_data_handler_capi.h111 NativeDeliveryMode deliveryMode; member
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_multistages_capture/include/
H A Dmultistages_photo_capture_manager.h49 void ProcessImage(int fileId, int deliveryMode);
/ohos5.0/docs/zh-cn/application-dev/media/medialibrary/
H A Dusing-ndk-mediaassetmanager-for-request-resource.md57 options.deliveryMode = MEDIA_LIBRARY_HIGH_QUALITY_MODE;
H A DphotoAccessHelper-photoviewpicker.md104 deliveryMode: photoAccessHelper.DeliveryMode.HIGH_QUALITY_MODE,
H A DphotoAccessHelper-movingphoto.md127 deliveryMode: photoAccessHelper.DeliveryMode.FAST_MODE
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gatt.h502 int deliveryMode; member
/ohos5.0/docs/en/application-dev/media/medialibrary/
H A Dusing-ndk-mediaassetmanager-for-request-resource.md61 options.deliveryMode = MEDIA_LIBRARY_HIGH_QUALITY_MODE;
H A DphotoAccessHelper-photoviewpicker.md103 deliveryMode: photoAccessHelper.DeliveryMode.HIGH_QUALITY_MODE,
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_ble_central_manager.h536 int32_t deliveryMode; member
/ohos5.0/docs/zh-cn/application-dev/media/camera/
H A Dnative-camera-deferred-capture.md152 requestOptions.deliveryMode = MEDIA_LIBRARY_FAST_MODE;
H A Dcamera-deferred-capture.md110 deliveryMode: photoAccessHelper.DeliveryMode.FAST_MODE,
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_ble_central_manager.cpp515 paramSet.deliveryMode = lpDeviceParamSet.deliveryMode; in SetLpDeviceParam()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/common/
H A Dble_service_data.h1463 int32_t deliveryMode; member
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt.cpp1339 outParam.deliveryMode = inParam->deliveryMode; in ConvertLpDeviceParamData()

12