Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 20 | #include <binder/IMemory.h> |
Jamie Gennis | 4b79168 | 2010-08-10 16:37:53 -0700 | [diff] [blame] | 21 | #include <ui/egl/android_natives.h> |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 22 | #include <utils/RefBase.h> |
| 23 | #include <surfaceflinger/ISurface.h> |
James Dong | a9424e2 | 2010-10-06 18:11:23 -0700 | [diff] [blame] | 24 | #include <ui/android_native_buffer.h> |
| 25 | #include <ui/GraphicBuffer.h> |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 26 | #include <camera/Camera.h> |
| 27 | #include <camera/CameraParameters.h> |
| 28 | |
| 29 | namespace android { |
| 30 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 31 | /** |
| 32 | * The size of image for display. |
| 33 | */ |
| 34 | typedef struct image_rect_struct |
| 35 | { |
| 36 | uint32_t width; /* Image width */ |
| 37 | uint32_t height; /* Image height */ |
| 38 | } image_rect_type; |
| 39 | |
| 40 | |
| 41 | typedef void (*notify_callback)(int32_t msgType, |
| 42 | int32_t ext1, |
| 43 | int32_t ext2, |
| 44 | void* user); |
| 45 | |
| 46 | typedef void (*data_callback)(int32_t msgType, |
| 47 | const sp<IMemory>& dataPtr, |
| 48 | void* user); |
| 49 | |
| 50 | typedef void (*data_callback_timestamp)(nsecs_t timestamp, |
| 51 | int32_t msgType, |
| 52 | const sp<IMemory>& dataPtr, |
| 53 | void* user); |
| 54 | |
| 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. |
| 70 | * -# 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. |
| 74 | * |
| 75 | * 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. |
| 80 | * |
| 81 | * CameraService calls takePicture() to request the camera instance take a |
| 82 | * 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. |
| 85 | */ |
| 86 | class CameraHardwareInterface : public virtual RefBase { |
| 87 | public: |
| 88 | virtual ~CameraHardwareInterface() { } |
| 89 | |
Jamie Gennis | a77e059 | 2010-09-25 17:58:15 -0700 | [diff] [blame] | 90 | /** Set the ANativeWindow to which preview frames are sent */ |
Jamie Gennis | 4b79168 | 2010-08-10 16:37:53 -0700 | [diff] [blame] | 91 | virtual status_t setPreviewWindow(const sp<ANativeWindow>& buf) = 0; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 92 | |
| 93 | /** Return the IMemoryHeap for the raw image heap */ |
| 94 | virtual sp<IMemoryHeap> getRawHeap() const = 0; |
| 95 | |
| 96 | /** 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 | |
| 102 | /** |
| 103 | * The following three functions all take a msgtype, |
| 104 | * which is a bitmask of the messages defined in |
| 105 | * include/ui/Camera.h |
| 106 | */ |
| 107 | |
| 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 | |
| 130 | /** |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 131 | * Stop a previously started preview. |
| 132 | */ |
| 133 | virtual void stopPreview() = 0; |
| 134 | |
| 135 | /** |
| 136 | * Returns true if preview is enabled. |
| 137 | */ |
| 138 | virtual bool previewEnabled() = 0; |
| 139 | |
| 140 | /** |
James Dong | 8be92d5 | 2010-10-18 20:38:29 -0700 | [diff] [blame] | 141 | * Retrieve the total number of available buffers from camera hal for passing |
| 142 | * video frame data in a recording session. Must be called again if a new |
| 143 | * recording session is started. |
| 144 | * |
| 145 | * This method should be called after startRecording(), since |
| 146 | * the some camera hal may choose to allocate the video buffers only after |
| 147 | * recording is started. |
| 148 | * |
| 149 | * Some camera hal may not implement this method, and 0 can be returned to |
| 150 | * indicate that this feature is not available. |
| 151 | * |
| 152 | * @return the number of video buffers that camera hal makes available. |
| 153 | * Zero (0) is returned to indicate that camera hal does not support |
| 154 | * this feature. |
| 155 | */ |
| 156 | virtual int32_t getNumberOfVideoBuffers() const { return 0; } |
| 157 | |
| 158 | /** |
| 159 | * Retrieve the video buffer corresponding to the given index in a |
| 160 | * recording session. Must be called again if a new recording session |
| 161 | * is started. |
| 162 | * |
| 163 | * It allows a client to retrieve all video buffers that camera hal makes |
| 164 | * available to passing video frame data by calling this method with all |
| 165 | * valid index values. The valid index value ranges from 0 to n, where |
| 166 | * n = getNumberOfVideoBuffers() - 1. With an index outside of the valid |
| 167 | * range, 0 must be returned. This method should be called after |
| 168 | * startRecording(). |
| 169 | * |
| 170 | * The video buffers should NOT be modified/released by camera hal |
| 171 | * until stopRecording() is called and all outstanding video buffers |
| 172 | * previously sent out via CAMERA_MSG_VIDEO_FRAME have been released |
| 173 | * via releaseVideoBuffer(). |
| 174 | * |
| 175 | * @param index an index to retrieve the corresponding video buffer. |
| 176 | * |
| 177 | * @return the video buffer corresponding to the given index. |
| 178 | */ |
| 179 | virtual sp<IMemory> getVideoBuffer(int32_t index) const { return 0; } |
| 180 | |
| 181 | /** |
| 182 | * Request the camera hal to store meta data or real YUV data in |
| 183 | * the video buffers send out via CAMERA_MSG_VIDEO_FRRAME for a |
| 184 | * recording session. If it is not called, the default camera |
| 185 | * hal behavior is to store real YUV data in the video buffers. |
| 186 | * |
| 187 | * This method should be called before startRecording() in order |
| 188 | * to be effective. |
| 189 | * |
| 190 | * If meta data is stored in the video buffers, it is up to the |
| 191 | * receiver of the video buffers to interpret the contents and |
| 192 | * to find the actual frame data with the help of the meta data |
| 193 | * in the buffer. How this is done is outside of the scope of |
| 194 | * this method. |
| 195 | * |
| 196 | * Some camera hal may not support storing meta data in the video |
| 197 | * buffers, but all camera hal should support storing real YUV data |
| 198 | * in the video buffers. If the camera hal does not support storing |
| 199 | * the meta data in the video buffers when it is requested to do |
| 200 | * do, INVALID_OPERATION must be returned. It is very useful for |
| 201 | * the camera hal to pass meta data rather than the actual frame |
| 202 | * data directly to the video encoder, since the amount of the |
| 203 | * uncompressed frame data can be very large if video size is large. |
| 204 | * |
| 205 | * @param enable if true to instruct the camera hal to store |
| 206 | * meta data in the video buffers; false to instruct |
| 207 | * the camera hal to store real YUV data in the video |
| 208 | * buffers. |
| 209 | * |
| 210 | * @return OK on success. |
| 211 | */ |
| 212 | virtual status_t storeMetaDataInBuffers(bool enable) { |
| 213 | return enable? INVALID_OPERATION: OK; |
| 214 | } |
| 215 | |
| 216 | /** |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 217 | * Start record mode. When a record image is available a CAMERA_MSG_VIDEO_FRAME |
| 218 | * message is sent with the corresponding frame. Every record frame must be released |
| 219 | * by calling releaseRecordingFrame(). |
| 220 | */ |
| 221 | virtual status_t startRecording() = 0; |
| 222 | |
| 223 | /** |
| 224 | * Stop a previously started recording. |
| 225 | */ |
| 226 | virtual void stopRecording() = 0; |
| 227 | |
| 228 | /** |
| 229 | * Returns true if recording is enabled. |
| 230 | */ |
| 231 | virtual bool recordingEnabled() = 0; |
| 232 | |
| 233 | /** |
| 234 | * Release a record frame previously returned by CAMERA_MSG_VIDEO_FRAME. |
| 235 | */ |
| 236 | virtual void releaseRecordingFrame(const sp<IMemory>& mem) = 0; |
| 237 | |
| 238 | /** |
| 239 | * Start auto focus, the notification callback routine is called |
| 240 | * with CAMERA_MSG_FOCUS once when focusing is complete. autoFocus() |
| 241 | * will be called again if another auto focus is needed. |
| 242 | */ |
| 243 | virtual status_t autoFocus() = 0; |
| 244 | |
| 245 | /** |
| 246 | * Cancels auto-focus function. If the auto-focus is still in progress, |
| 247 | * this function will cancel it. Whether the auto-focus is in progress |
| 248 | * or not, this function will return the focus position to the default. |
| 249 | * If the camera does not support auto-focus, this is a no-op. |
| 250 | */ |
| 251 | virtual status_t cancelAutoFocus() = 0; |
| 252 | |
| 253 | /** |
| 254 | * Take a picture. |
| 255 | */ |
| 256 | virtual status_t takePicture() = 0; |
| 257 | |
| 258 | /** |
| 259 | * Cancel a picture that was started with takePicture. Calling this |
| 260 | * method when no picture is being taken is a no-op. |
| 261 | */ |
| 262 | virtual status_t cancelPicture() = 0; |
| 263 | |
Wu-cheng Li | c2c8868 | 2010-11-19 15:56:16 +0800 | [diff] [blame] | 264 | /** |
| 265 | * Set the camera parameters. This returns BAD_VALUE if any parameter is |
| 266 | * invalid or not supported. */ |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 267 | virtual status_t setParameters(const CameraParameters& params) = 0; |
| 268 | |
| 269 | /** Return the camera parameters. */ |
| 270 | virtual CameraParameters getParameters() const = 0; |
| 271 | |
| 272 | /** |
| 273 | * Send command to camera driver. |
| 274 | */ |
| 275 | virtual status_t sendCommand(int32_t cmd, int32_t arg1, int32_t arg2) = 0; |
| 276 | |
| 277 | /** |
| 278 | * Release the hardware resources owned by this object. Note that this is |
| 279 | * *not* done in the destructor. |
| 280 | */ |
| 281 | virtual void release() = 0; |
| 282 | |
| 283 | /** |
| 284 | * Dump state of the camera hardware |
| 285 | */ |
| 286 | virtual status_t dump(int fd, const Vector<String16>& args) const = 0; |
| 287 | }; |
| 288 | |
Chih-Chung Chang | ddbdb35 | 2010-06-10 13:32:16 +0800 | [diff] [blame] | 289 | /** |
| 290 | * The functions need to be provided by the camera HAL. |
| 291 | * |
| 292 | * If getNumberOfCameras() returns N, the valid cameraId for getCameraInfo() |
| 293 | * and openCameraHardware() is 0 to N-1. |
| 294 | */ |
| 295 | extern "C" int HAL_getNumberOfCameras(); |
| 296 | extern "C" void HAL_getCameraInfo(int cameraId, struct CameraInfo* cameraInfo); |
Wu-cheng Li | b7a6794 | 2010-08-17 15:45:37 -0700 | [diff] [blame] | 297 | /* HAL should return NULL if it fails to open camera hardware. */ |
Chih-Chung Chang | ddbdb35 | 2010-06-10 13:32:16 +0800 | [diff] [blame] | 298 | extern "C" sp<CameraHardwareInterface> HAL_openCameraHardware(int cameraId); |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 299 | |
| 300 | }; // namespace android |
| 301 | |
| 302 | #endif |