blob: 3a77dd139f0c1ffb7db9ad553e992aaf238ab793 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_HARDWARE_CAMERA_HARDWARE_INTERFACE_H
18#define ANDROID_HARDWARE_CAMERA_HARDWARE_INTERFACE_H
19
Mathias Agopian07952722009-05-19 19:08:10 -070020#include <binder/IMemory.h>
Jamie Gennis85cfdd02010-08-10 16:37:53 -070021#include <ui/egl/android_natives.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022#include <utils/RefBase.h>
Mathias Agopian000479f2010-02-09 17:46:37 -080023#include <surfaceflinger/ISurface.h>
24#include <camera/Camera.h>
25#include <camera/CameraParameters.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026
27namespace android {
Mathias Agopian000479f2010-02-09 17:46:37 -080028
29class Overlay;
30
Wu-cheng Li4cb04c42009-10-23 17:39:46 +080031/**
32 * The size of image for display.
33 */
34typedef struct image_rect_struct
35{
36 uint32_t width; /* Image width */
37 uint32_t height; /* Image height */
38} image_rect_type;
39
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040
Benny Wongda83f462009-08-12 12:01:27 -050041typedef void (*notify_callback)(int32_t msgType,
42 int32_t ext1,
43 int32_t ext2,
44 void* user);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045
Benny Wongda83f462009-08-12 12:01:27 -050046typedef void (*data_callback)(int32_t msgType,
47 const sp<IMemory>& dataPtr,
48 void* user);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049
Benny Wongda83f462009-08-12 12:01:27 -050050typedef void (*data_callback_timestamp)(nsecs_t timestamp,
51 int32_t msgType,
52 const sp<IMemory>& dataPtr,
53 void* user);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054
55/**
56 * CameraHardwareInterface.h defines the interface to the
57 * camera hardware abstraction layer, used for setting and getting
58 * parameters, live previewing, and taking pictures.
59 *
60 * It is a referenced counted interface with RefBase as its base class.
61 * CameraService calls openCameraHardware() to retrieve a strong pointer to the
62 * instance of this interface and may be called multiple times. The
63 * following steps describe a typical sequence:
64 *
65 * -# After CameraService calls openCameraHardware(), getParameters() and
66 * setParameters() are used to initialize the camera instance.
67 * CameraService calls getPreviewHeap() to establish access to the
68 * preview heap so it can be registered with SurfaceFlinger for
69 * efficient display updating while in preview mode.
Benny Wongda83f462009-08-12 12:01:27 -050070 * -# startPreview() is called. The camera instance then periodically
71 * sends the message CAMERA_MSG_PREVIEW_FRAME (if enabled) each time
72 * a new preview frame is available. If data callback code needs to use
73 * this memory after returning, it must copy the data.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 *
Benny Wongda83f462009-08-12 12:01:27 -050075 * Prior to taking a picture, CameraService calls autofocus(). When auto
76 * focusing has completed, the camera instance sends a CAMERA_MSG_FOCUS notification,
77 * which informs the application whether focusing was successful. The camera instance
78 * only sends this message once and it is up to the application to call autoFocus()
79 * again if refocusing is desired.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 *
81 * CameraService calls takePicture() to request the camera instance take a
Benny Wongda83f462009-08-12 12:01:27 -050082 * picture. At this point, if a shutter, postview, raw, and/or compressed callback
83 * is desired, the corresponding message must be enabled. As with CAMERA_MSG_PREVIEW_FRAME,
84 * any memory provided in a data callback must be copied if it's needed after returning.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 */
86class CameraHardwareInterface : public virtual RefBase {
87public:
88 virtual ~CameraHardwareInterface() { }
89
Jamie Gennisba2bbcd2010-09-25 17:58:15 -070090 /** Set the ANativeWindow to which preview frames are sent */
Jamie Gennis85cfdd02010-08-10 16:37:53 -070091 virtual status_t setPreviewWindow(const sp<ANativeWindow>& buf) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092
93 /** Return the IMemoryHeap for the raw image heap */
94 virtual sp<IMemoryHeap> getRawHeap() const = 0;
95
Benny Wongda83f462009-08-12 12:01:27 -050096 /** Set the notification and data callbacks */
97 virtual void setCallbacks(notify_callback notify_cb,
98 data_callback data_cb,
99 data_callback_timestamp data_cb_timestamp,
100 void* user) = 0;
101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 /**
Benny Wongda83f462009-08-12 12:01:27 -0500103 * The following three functions all take a msgtype,
104 * which is a bitmask of the messages defined in
105 * include/ui/Camera.h
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 */
Benny Wongda83f462009-08-12 12:01:27 -0500107
108 /**
109 * Enable a message, or set of messages.
110 */
111 virtual void enableMsgType(int32_t msgType) = 0;
112
113 /**
114 * Disable a message, or a set of messages.
115 */
116 virtual void disableMsgType(int32_t msgType) = 0;
117
118 /**
119 * Query whether a message, or a set of messages, is enabled.
120 * Note that this is operates as an AND, if any of the messages
121 * queried are off, this will return false.
122 */
123 virtual bool msgTypeEnabled(int32_t msgType) = 0;
124
125 /**
126 * Start preview mode.
127 */
128 virtual status_t startPreview() = 0;
129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 /**
131 * Only used if overlays are used for camera preview.
132 */
Benny Wongda83f462009-08-12 12:01:27 -0500133 virtual bool useOverlay() {return false;}
134 virtual status_t setOverlay(const sp<Overlay> &overlay) {return BAD_VALUE;}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135
136 /**
137 * Stop a previously started preview.
138 */
139 virtual void stopPreview() = 0;
140
141 /**
142 * Returns true if preview is enabled.
143 */
144 virtual bool previewEnabled() = 0;
145
146 /**
Benny Wongda83f462009-08-12 12:01:27 -0500147 * Start record mode. When a record image is available a CAMERA_MSG_VIDEO_FRAME
148 * message is sent with the corresponding frame. Every record frame must be released
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 * by calling releaseRecordingFrame().
150 */
Benny Wongda83f462009-08-12 12:01:27 -0500151 virtual status_t startRecording() = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152
153 /**
154 * Stop a previously started recording.
155 */
156 virtual void stopRecording() = 0;
157
158 /**
159 * Returns true if recording is enabled.
160 */
161 virtual bool recordingEnabled() = 0;
Wu-cheng Li36f68b82009-09-28 16:14:58 -0700162
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 /**
Benny Wongda83f462009-08-12 12:01:27 -0500164 * Release a record frame previously returned by CAMERA_MSG_VIDEO_FRAME.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 */
166 virtual void releaseRecordingFrame(const sp<IMemory>& mem) = 0;
167
168 /**
Benny Wongda83f462009-08-12 12:01:27 -0500169 * Start auto focus, the notification callback routine is called
170 * with CAMERA_MSG_FOCUS once when focusing is complete. autoFocus()
171 * will be called again if another auto focus is needed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 */
Benny Wongda83f462009-08-12 12:01:27 -0500173 virtual status_t autoFocus() = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174
175 /**
Chih-Chung Chang244f8c22009-09-15 14:51:56 +0800176 * Cancels auto-focus function. If the auto-focus is still in progress,
177 * this function will cancel it. Whether the auto-focus is in progress
178 * or not, this function will return the focus position to the default.
179 * If the camera does not support auto-focus, this is a no-op.
180 */
181 virtual status_t cancelAutoFocus() = 0;
182
183 /**
Benny Wongda83f462009-08-12 12:01:27 -0500184 * Take a picture.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 */
Benny Wongda83f462009-08-12 12:01:27 -0500186 virtual status_t takePicture() = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187
188 /**
Benny Wongda83f462009-08-12 12:01:27 -0500189 * Cancel a picture that was started with takePicture. Calling this
190 * method when no picture is being taken is a no-op.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 */
Benny Wongda83f462009-08-12 12:01:27 -0500192 virtual status_t cancelPicture() = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193
194 /** Set the camera parameters. */
195 virtual status_t setParameters(const CameraParameters& params) = 0;
196
197 /** Return the camera parameters. */
198 virtual CameraParameters getParameters() const = 0;
199
200 /**
Wu-cheng Li36f68b82009-09-28 16:14:58 -0700201 * Send command to camera driver.
202 */
203 virtual status_t sendCommand(int32_t cmd, int32_t arg1, int32_t arg2) = 0;
204
205 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 * Release the hardware resources owned by this object. Note that this is
207 * *not* done in the destructor.
208 */
209 virtual void release() = 0;
Wu-cheng Li36f68b82009-09-28 16:14:58 -0700210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 /**
212 * Dump state of the camera hardware
213 */
214 virtual status_t dump(int fd, const Vector<String16>& args) const = 0;
215};
216
Chih-Chung Changb8bb78f2010-06-10 13:32:16 +0800217/**
218 * The functions need to be provided by the camera HAL.
219 *
220 * If getNumberOfCameras() returns N, the valid cameraId for getCameraInfo()
221 * and openCameraHardware() is 0 to N-1.
222 */
223extern "C" int HAL_getNumberOfCameras();
224extern "C" void HAL_getCameraInfo(int cameraId, struct CameraInfo* cameraInfo);
Wu-cheng Lie7044382010-08-17 15:45:37 -0700225/* HAL should return NULL if it fails to open camera hardware. */
Chih-Chung Changb8bb78f2010-06-10 13:32:16 +0800226extern "C" sp<CameraHardwareInterface> HAL_openCameraHardware(int cameraId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227
228}; // namespace android
229
230#endif