Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dphoto_output_impl.cpp56 if (photoNative_) { in ~Camera_PhotoOutput()
57 delete photoNative_; in ~Camera_PhotoOutput()
58 photoNative_ = nullptr; in ~Camera_PhotoOutput()
354 if (!photoNative_) { in CreateCameraPhotoNative()
355 photoNative_ = new(std::nothrow) OH_PhotoNative; in CreateCameraPhotoNative()
356 …CHECK_AND_RETURN_RET_LOG(photoNative_ != nullptr, nullptr, "Create camera photo native object fail… in CreateCameraPhotoNative()
360 photoNative_->SetMainImage(image); in CreateCameraPhotoNative()
362 photoNative_->SetRawImage(image); in CreateCameraPhotoNative()
364 return photoNative_; in CreateCameraPhotoNative()
H A Dphoto_output_impl.h279 OH_PhotoNative *photoNative_ = nullptr; member