Home
last modified time | relevance | path

Searched refs:rawPhotoSurface (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dphoto_listener_impl.cpp275 …otoListener::RawPhotoListener(Camera_PhotoOutput* photoOutput, const sptr<Surface> rawPhotoSurface) in RawPhotoListener() argument
276 : photoOutput_(photoOutput), rawPhotoSurface_(rawPhotoSurface) in RawPhotoListener()
278 if (bufferProcessor_ == nullptr && rawPhotoSurface != nullptr) { in RawPhotoListener()
279 bufferProcessor_ = std::make_shared<PhotoBufferProcessor>(rawPhotoSurface); in RawPhotoListener()
H A Dphoto_listener_impl.h76 explicit RawPhotoListener(Camera_PhotoOutput* photoOutput, const sptr<Surface> rawPhotoSurface);
/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/
H A Dphoto_output_napi.h167 explicit RawPhotoListener(napi_env env, const sptr<Surface> rawPhotoSurface);
174 void UpdateJSCallback(sptr<Surface> rawPhotoSurface) const;
175 void UpdateJSCallbackAsync(sptr<Surface> rawPhotoSurface) const;
176 void ExecuteRawPhoto(sptr<SurfaceBuffer> rawPhotoSurface) const;
284 RawPhotoListenerInfo(sptr<Surface> rawPhotoSurface, const RawPhotoListener* listener) in RawPhotoListenerInfo()
285 : rawPhotoSurface_(rawPhotoSurface), listener_(listener) in RawPhotoListenerInfo()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/
H A Dphoto_output_napi.cpp198 RawPhotoListener::RawPhotoListener(napi_env env, const sptr<Surface> rawPhotoSurface) in RawPhotoListener() argument
199 : ListenerBase(env), rawPhotoSurface_(rawPhotoSurface) in RawPhotoListener()
201 if (bufferProcessor_ == nullptr && rawPhotoSurface != nullptr) { in RawPhotoListener()
202 bufferProcessor_ = std::make_shared<PhotoBufferProcessor>(rawPhotoSurface); in RawPhotoListener()
1187 void RawPhotoListener::UpdateJSCallback(sptr<Surface> rawPhotoSurface) const in UpdateJSCallback()
1193 … SurfaceError surfaceRet = rawPhotoSurface->AcquireBuffer(surfaceBuffer, fence, timestamp, damage); in UpdateJSCallback()
1210 void RawPhotoListener::UpdateJSCallbackAsync(sptr<Surface> rawPhotoSurface) const in UpdateJSCallbackAsync()
1223 …RawPhotoListenerInfo> callbackInfo = std::make_unique<RawPhotoListenerInfo>(rawPhotoSurface, this); in UpdateJSCallbackAsync()