summaryrefslogtreecommitdiff
Diffstat
-rw-r--r--v3/EmulatedBaseCamera.cpp11
-rw-r--r--v3/EmulatedBaseCamera.h9
-rw-r--r--v3/EmulatedCamera3.cpp11
-rw-r--r--v3/EmulatedCamera3.h2
-rwxr-xr-xv3/EmulatedCameraFactory.cpp43
-rwxr-xr-xv3/EmulatedFakeCamera3.cpp24
-rwxr-xr-xv3/EmulatedFakeCamera3.h4
-rwxr-xr-xv3/fake-pipeline2/Sensor.cpp5
-rwxr-xr-xv3/fake-pipeline2/camera_hw.cpp190
-rwxr-xr-xv3/fake-pipeline2/camera_hw.h5
10 files changed, 201 insertions, 103 deletions
diff --git a/v3/EmulatedCamera3.cpp b/v3/EmulatedCamera3.cpp
index 3a54794..30d6364 100644
--- a/v3/EmulatedCamera3.cpp
+++ b/v3/EmulatedCamera3.cpp
@@ -80,6 +80,17 @@ status_t EmulatedCamera3::Initialize() {
return NO_ERROR;
}
+void EmulatedCamera3::setCameraStatus(camera_status_t status)
+{
+ DBG_LOGB("%s : do nothing", __FUNCTION__);
+}
+
+camera_status_t EmulatedCamera3::getCameraStatus()
+{
+ DBG_LOGB("%s : do nothing", __FUNCTION__);
+ return CAMERA_READY_REMOVE;
+}
+
/****************************************************************************
* Camera API implementation
***************************************************************************/