Home
last modified time | relevance | path

Searched refs:ACaptureSessionOutput (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/camera/ndk/include/camera/
DNdkCameraDevice.h298 typedef struct ACaptureSessionOutput ACaptureSessionOutput; typedef
347 ANativeWindow* anw, /*out*/ACaptureSessionOutput** output);
356 void ACaptureSessionOutput_free(ACaptureSessionOutput* output);
369 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output);
385 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output);
694 ANativeWindow* anw, /*out*/ACaptureSessionOutput** output);
711 camera_status_t ACaptureSessionSharedOutput_add(ACaptureSessionOutput *output, ANativeWindow *anw);
726 camera_status_t ACaptureSessionSharedOutput_remove(ACaptureSessionOutput *output,
DNdkCameraCaptureSession.h597 typedef struct ACaptureSessionOutput ACaptureSessionOutput; typedef
640 ACaptureSessionOutput* output);
/frameworks/av/camera/ndk/impl/
DACameraCaptureSession.h26 struct ACaptureSessionOutput { struct
27 explicit ACaptureSessionOutput(ANativeWindow* window, bool isShared = false) :
30 bool operator == (const ACaptureSessionOutput& other) const { argument
33 bool operator != (const ACaptureSessionOutput& other) const {
36 bool operator < (const ACaptureSessionOutput& other) const {
39 bool operator > (const ACaptureSessionOutput& other) const {
50 std::set<ACaptureSessionOutput> mOutputs; argument
95 camera_status_t updateOutputConfiguration(ACaptureSessionOutput *output);
DACameraCaptureSession.cpp151 camera_status_t ACameraCaptureSession::updateOutputConfiguration(ACaptureSessionOutput *output) { in updateOutputConfiguration()
DACameraDevice.h128 camera_status_t updateOutputConfigurationLocked(ACaptureSessionOutput *output);
DACameraDevice.cpp293 camera_status_t CameraDevice::updateOutputConfigurationLocked(ACaptureSessionOutput *output) { in updateOutputConfigurationLocked()
/frameworks/av/camera/ndk/
DNdkCameraDevice.cpp99 ANativeWindow* window, /*out*/ACaptureSessionOutput** out) { in ACaptureSessionOutput_create()
106 *out = new ACaptureSessionOutput(window, false); in ACaptureSessionOutput_create()
112 ANativeWindow* window, /*out*/ACaptureSessionOutput** out) { in ACaptureSessionSharedOutput_create()
119 *out = new ACaptureSessionOutput(window, true); in ACaptureSessionSharedOutput_create()
124 camera_status_t ACaptureSessionSharedOutput_add(ACaptureSessionOutput *out, in ACaptureSessionSharedOutput_add()
149 camera_status_t ACaptureSessionSharedOutput_remove(ACaptureSessionOutput *out, in ACaptureSessionSharedOutput_remove()
174 void ACaptureSessionOutput_free(ACaptureSessionOutput* output) { in ACaptureSessionOutput_free()
184 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) { in ACaptureSessionOutputContainer_add()
200 ACaptureSessionOutputContainer* container, const ACaptureSessionOutput* output) { in ACaptureSessionOutputContainer_remove()
DNdkCameraCaptureSession.cpp141 ACaptureSessionOutput* output) { in ACameraCaptureSession_updateSharedOutput()