Home
last modified time | relevance | path

Searched refs:extNativeSoHandle_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dimage_fwk_ext_manager.cpp40 extNativeSoHandle_ = nullptr; in ImageFwkExtManager()
48 if (!isImageFwkExtNativeSoOpened_ || extNativeSoHandle_ == nullptr) { in ~ImageFwkExtManager()
52 if (dlclose(extNativeSoHandle_)) { in ~ImageFwkExtManager()
65 extNativeSoHandle_ = dlopen(IMAGE_FWK_EXT_NATIVE_SO.c_str(), RTLD_LAZY); in LoadImageFwkExtNativeSo()
66 if (extNativeSoHandle_ == nullptr) { in LoadImageFwkExtNativeSo()
72 … reinterpret_cast<HevcSoftwareDecodeFunc>(dlsym(extNativeSoHandle_, "HevcSoftwareDecode")); in LoadImageFwkExtNativeSo()
75 dlclose(extNativeSoHandle_); in LoadImageFwkExtNativeSo()
76 extNativeSoHandle_ = nullptr; in LoadImageFwkExtNativeSo()
79 …ardwareEncodePictureFunc_ = reinterpret_cast<DoHardwareEncodePictureFunc>(dlsym(extNativeSoHandle_, in LoadImageFwkExtNativeSo()
83 dlclose(extNativeSoHandle_); in LoadImageFwkExtNativeSo()
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/include/
H A Dimage_fwk_ext_manager.h54 void* extNativeSoHandle_; variable