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_PARAMETERS_H |
| 18 | #define ANDROID_HARDWARE_CAMERA_PARAMETERS_H |
| 19 | |
| 20 | #include <utils/KeyedVector.h> |
| 21 | #include <utils/String8.h> |
| 22 | |
| 23 | namespace android { |
| 24 | |
| 25 | class CameraParameters |
| 26 | { |
| 27 | public: |
| 28 | CameraParameters(); |
| 29 | CameraParameters(const String8 ¶ms) { unflatten(params); } |
| 30 | ~CameraParameters(); |
| 31 | |
| 32 | String8 flatten() const; |
| 33 | void unflatten(const String8 ¶ms); |
| 34 | |
| 35 | void set(const char *key, const char *value); |
| 36 | void set(const char *key, int value); |
| 37 | void setFloat(const char *key, float value); |
| 38 | const char *get(const char *key) const; |
| 39 | int getInt(const char *key) const; |
| 40 | float getFloat(const char *key) const; |
| 41 | |
Wu-cheng Li | adbda96 | 2010-05-11 12:11:56 +0800 | [diff] [blame] | 42 | void remove(const char *key); |
| 43 | |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 44 | void setPreviewSize(int width, int height); |
| 45 | void getPreviewSize(int *width, int *height) const; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 46 | void setPreviewFrameRate(int fps); |
| 47 | int getPreviewFrameRate() const; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 48 | void setPreviewFormat(const char *format); |
| 49 | const char *getPreviewFormat() const; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 50 | void setPictureSize(int width, int height); |
| 51 | void getPictureSize(int *width, int *height) const; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 52 | void setPictureFormat(const char *format); |
| 53 | const char *getPictureFormat() const; |
| 54 | |
| 55 | void dump() const; |
| 56 | status_t dump(int fd, const Vector<String16>& args) const; |
| 57 | |
| 58 | // Parameter keys to communicate between camera application and driver. |
| 59 | // The access (read/write, read only, or write only) is viewed from the |
| 60 | // perspective of applications, not driver. |
| 61 | |
| 62 | // Preview frame size in pixels (width x height). |
| 63 | // Example value: "480x320". Read/Write. |
| 64 | static const char KEY_PREVIEW_SIZE[]; |
| 65 | // Supported preview frame sizes in pixels. |
| 66 | // Example value: "800x600,480x320". Read only. |
| 67 | static const char KEY_SUPPORTED_PREVIEW_SIZES[]; |
Wu-cheng Li | 0b0279e | 2010-05-28 17:32:41 +0800 | [diff] [blame] | 68 | // The image format for preview frames. See CAMERA_MSG_PREVIEW_FRAME in |
| 69 | // frameworks/base/include/camera/Camera.h. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 70 | // Example value: "yuv420sp" or PIXEL_FORMAT_XXX constants. Read/write. |
| 71 | static const char KEY_PREVIEW_FORMAT[]; |
| 72 | // Supported image formats for preview frames. |
| 73 | // Example value: "yuv420sp,yuv422i-yuyv". Read only. |
| 74 | static const char KEY_SUPPORTED_PREVIEW_FORMATS[]; |
Wu-cheng Li | 0b0279e | 2010-05-28 17:32:41 +0800 | [diff] [blame] | 75 | // Number of preview frames per second. This is the target frame rate. The |
| 76 | // actual frame rate depends on the driver. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 77 | // Example value: "15". Read/write. |
| 78 | static const char KEY_PREVIEW_FRAME_RATE[]; |
| 79 | // Supported number of preview frames per second. |
| 80 | // Example value: "24,15,10". Read. |
| 81 | static const char KEY_SUPPORTED_PREVIEW_FRAME_RATES[]; |
| 82 | // The dimensions for captured pictures in pixels (width x height). |
| 83 | // Example value: "1024x768". Read/write. |
| 84 | static const char KEY_PICTURE_SIZE[]; |
| 85 | // Supported dimensions for captured pictures in pixels. |
| 86 | // Example value: "2048x1536,1024x768". Read only. |
| 87 | static const char KEY_SUPPORTED_PICTURE_SIZES[]; |
Wu-cheng Li | 0b0279e | 2010-05-28 17:32:41 +0800 | [diff] [blame] | 88 | // The image format for captured pictures. See CAMERA_MSG_COMPRESSED_IMAGE |
| 89 | // in frameworks/base/include/camera/Camera.h. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 90 | // Example value: "jpeg" or PIXEL_FORMAT_XXX constants. Read/write. |
| 91 | static const char KEY_PICTURE_FORMAT[]; |
| 92 | // Supported image formats for captured pictures. |
| 93 | // Example value: "jpeg,rgb565". Read only. |
| 94 | static const char KEY_SUPPORTED_PICTURE_FORMATS[]; |
| 95 | // The width (in pixels) of EXIF thumbnail in Jpeg picture. |
| 96 | // Example value: "512". Read/write. |
| 97 | static const char KEY_JPEG_THUMBNAIL_WIDTH[]; |
| 98 | // The height (in pixels) of EXIF thumbnail in Jpeg picture. |
| 99 | // Example value: "384". Read/write. |
| 100 | static const char KEY_JPEG_THUMBNAIL_HEIGHT[]; |
| 101 | // Supported EXIF thumbnail sizes (width x height). 0x0 means not thumbnail |
| 102 | // in EXIF. |
| 103 | // Example value: "512x384,320x240,0x0". Read only. |
| 104 | static const char KEY_SUPPORTED_JPEG_THUMBNAIL_SIZES[]; |
| 105 | // The quality of the EXIF thumbnail in Jpeg picture. The range is 1 to 100, |
| 106 | // with 100 being the best. |
| 107 | // Example value: "90". Read/write. |
| 108 | static const char KEY_JPEG_THUMBNAIL_QUALITY[]; |
| 109 | // Jpeg quality of captured picture. The range is 1 to 100, with 100 being |
| 110 | // the best. |
| 111 | // Example value: "90". Read/write. |
| 112 | static const char KEY_JPEG_QUALITY[]; |
| 113 | // The orientation of the device in degrees. For example, suppose the |
| 114 | // natural position of the device is landscape. If the user takes a picture |
| 115 | // in landscape mode in 2048x1536 resolution, the rotation will be set to |
| 116 | // "0". If the user rotates the phone 90 degrees clockwise, the rotation |
| 117 | // should be set to "90". |
| 118 | // The camera driver can set orientation in the EXIF header without rotating |
| 119 | // the picture. Or the driver can rotate the picture and the EXIF thumbnail. |
| 120 | // If the Jpeg picture is rotated, the orientation in the EXIF header should |
| 121 | // be missing or 1 (row #0 is top and column #0 is left side). The driver |
| 122 | // should not set default value for this parameter. |
| 123 | // Example value: "0" or "90" or "180" or "270". Write only. |
| 124 | static const char KEY_ROTATION[]; |
Wu-cheng Li | 6b19fac | 2010-05-21 17:52:42 +0800 | [diff] [blame] | 125 | // GPS latitude coordinate. GPSLatitude and GPSLatitudeRef will be stored in |
| 126 | // JPEG EXIF header. |
| 127 | // Example value: "25.032146" or "-33.462809". Write only. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 128 | static const char KEY_GPS_LATITUDE[]; |
Wu-cheng Li | 6b19fac | 2010-05-21 17:52:42 +0800 | [diff] [blame] | 129 | // GPS longitude coordinate. GPSLongitude and GPSLongitudeRef will be stored |
| 130 | // in JPEG EXIF header. |
| 131 | // Example value: "121.564448" or "-70.660286". Write only. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 132 | static const char KEY_GPS_LONGITUDE[]; |
Wu-cheng Li | 6b19fac | 2010-05-21 17:52:42 +0800 | [diff] [blame] | 133 | // GPS altitude. GPSAltitude and GPSAltitudeRef will be stored in JPEG EXIF |
| 134 | // header. |
| 135 | // Example value: "21.0" or "-5". Write only. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 136 | static const char KEY_GPS_ALTITUDE[]; |
| 137 | // GPS timestamp (UTC in seconds since January 1, 1970). This should be |
| 138 | // stored in JPEG EXIF header. |
| 139 | // Example value: "1251192757". Write only. |
| 140 | static const char KEY_GPS_TIMESTAMP[]; |
Ray Chen | c0170bc | 2010-02-23 10:45:42 +0800 | [diff] [blame] | 141 | // GPS Processing Method |
| 142 | // Example value: "GPS" or "NETWORK". Write only. |
| 143 | static const char KEY_GPS_PROCESSING_METHOD[]; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 144 | // Current white balance setting. |
| 145 | // Example value: "auto" or WHITE_BALANCE_XXX constants. Read/write. |
| 146 | static const char KEY_WHITE_BALANCE[]; |
| 147 | // Supported white balance settings. |
| 148 | // Example value: "auto,incandescent,daylight". Read only. |
| 149 | static const char KEY_SUPPORTED_WHITE_BALANCE[]; |
| 150 | // Current color effect setting. |
| 151 | // Example value: "none" or EFFECT_XXX constants. Read/write. |
| 152 | static const char KEY_EFFECT[]; |
| 153 | // Supported color effect settings. |
| 154 | // Example value: "none,mono,sepia". Read only. |
| 155 | static const char KEY_SUPPORTED_EFFECTS[]; |
| 156 | // Current antibanding setting. |
| 157 | // Example value: "auto" or ANTIBANDING_XXX constants. Read/write. |
| 158 | static const char KEY_ANTIBANDING[]; |
| 159 | // Supported antibanding settings. |
| 160 | // Example value: "auto,50hz,60hz,off". Read only. |
| 161 | static const char KEY_SUPPORTED_ANTIBANDING[]; |
| 162 | // Current scene mode. |
| 163 | // Example value: "auto" or SCENE_MODE_XXX constants. Read/write. |
| 164 | static const char KEY_SCENE_MODE[]; |
| 165 | // Supported scene mode settings. |
| 166 | // Example value: "auto,night,fireworks". Read only. |
| 167 | static const char KEY_SUPPORTED_SCENE_MODES[]; |
| 168 | // Current flash mode. |
| 169 | // Example value: "auto" or FLASH_MODE_XXX constants. Read/write. |
| 170 | static const char KEY_FLASH_MODE[]; |
| 171 | // Supported flash modes. |
| 172 | // Example value: "auto,on,off". Read only. |
| 173 | static const char KEY_SUPPORTED_FLASH_MODES[]; |
Wu-cheng Li | c6e88fd | 2010-08-05 11:50:25 -0700 | [diff] [blame] | 174 | // Current focus mode. This will not be empty. Applications should call |
| 175 | // CameraHardwareInterface.autoFocus to start the focus if focus mode is |
| 176 | // FOCUS_MODE_AUTO or FOCUS_MODE_MACRO. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 177 | // Example value: "auto" or FOCUS_MODE_XXX constants. Read/write. |
| 178 | static const char KEY_FOCUS_MODE[]; |
| 179 | // Supported focus modes. |
| 180 | // Example value: "auto,macro,fixed". Read only. |
| 181 | static const char KEY_SUPPORTED_FOCUS_MODES[]; |
| 182 | // Focal length in millimeter. |
| 183 | // Example value: "4.31". Read only. |
| 184 | static const char KEY_FOCAL_LENGTH[]; |
| 185 | // Horizontal angle of view in degrees. |
| 186 | // Example value: "54.8". Read only. |
| 187 | static const char KEY_HORIZONTAL_VIEW_ANGLE[]; |
| 188 | // Vertical angle of view in degrees. |
| 189 | // Example value: "42.5". Read only. |
| 190 | static const char KEY_VERTICAL_VIEW_ANGLE[]; |
Wu-cheng Li | 4f1bff9 | 2010-02-20 17:47:04 +0800 | [diff] [blame] | 191 | // Exposure compensation index. 0 means exposure is not adjusted. |
| 192 | // Example value: "0" or "5". Read/write. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 193 | static const char KEY_EXPOSURE_COMPENSATION[]; |
Wu-cheng Li | 4f1bff9 | 2010-02-20 17:47:04 +0800 | [diff] [blame] | 194 | // The maximum exposure compensation index (>=0). |
| 195 | // Example value: "6". Read only. |
| 196 | static const char KEY_MAX_EXPOSURE_COMPENSATION[]; |
| 197 | // The minimum exposure compensation index (<=0). |
| 198 | // Example value: "-6". Read only. |
| 199 | static const char KEY_MIN_EXPOSURE_COMPENSATION[]; |
| 200 | // The exposure compensation step. Exposure compensation index multiply by |
| 201 | // step eqals to EV. Ex: if exposure compensation index is 6 and step is |
| 202 | // 0.3333, EV is -2. |
| 203 | // Example value: "0.333333333" or "0.5". Read only. |
| 204 | static const char KEY_EXPOSURE_COMPENSATION_STEP[]; |
Wu-cheng Li | 949c503 | 2010-02-28 23:19:55 -0800 | [diff] [blame] | 205 | // Current zoom value. |
| 206 | // Example value: "0" or "6". Read/write. |
| 207 | static const char KEY_ZOOM[]; |
| 208 | // Maximum zoom value. |
| 209 | // Example value: "6". Read only. |
| 210 | static const char KEY_MAX_ZOOM[]; |
| 211 | // The zoom ratios of all zoom values. The zoom ratio is in 1/100 |
| 212 | // increments. Ex: a zoom of 3.2x is returned as 320. The number of list |
| 213 | // elements is KEY_MAX_ZOOM + 1. The first element is always 100. The last |
| 214 | // element is the zoom ratio of zoom value KEY_MAX_ZOOM. |
| 215 | // Example value: "100,150,200,250,300,350,400". Read only. |
| 216 | static const char KEY_ZOOM_RATIOS[]; |
| 217 | // Whether zoom is supported. Zoom is supported if the value is "true". Zoom |
| 218 | // is not supported if the value is not "true" or the key does not exist. |
| 219 | // Example value: "true". Read only. |
| 220 | static const char KEY_ZOOM_SUPPORTED[]; |
| 221 | // Whether if smooth zoom is supported. Smooth zoom is supported if the |
| 222 | // value is "true". It is not supported if the value is not "true" or the |
| 223 | // key does not exist. |
| 224 | // See CAMERA_CMD_START_SMOOTH_ZOOM, CAMERA_CMD_STOP_SMOOTH_ZOOM, and |
| 225 | // CAMERA_MSG_ZOOM in frameworks/base/include/camera/Camera.h. |
| 226 | // Example value: "true". Read only. |
| 227 | static const char KEY_SMOOTH_ZOOM_SUPPORTED[]; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 228 | |
Wu-cheng Li | 09a2ab9 | 2010-05-13 19:31:02 +0800 | [diff] [blame] | 229 | // The distances (in meters) from the camera to where an object appears to |
| 230 | // be in focus. The object is sharpest at the optimal focus distance. The |
| 231 | // depth of field is the far focus distance minus near focus distance. |
| 232 | // |
Wu-cheng Li | c6e88fd | 2010-08-05 11:50:25 -0700 | [diff] [blame] | 233 | // Focus distances may change after starting auto focus, canceling auto |
| 234 | // focus, or starting the preview. Applications can read this anytime to get |
| 235 | // the latest focus distances. If the focus mode is FOCUS_MODE_CONTINUOUS, |
| 236 | // focus distances may change from time to time. |
| 237 | // |
| 238 | // This is intended to estimate the distance between the camera and the |
| 239 | // subject. After autofocus, the subject distance may be within near and far |
| 240 | // focus distance. However, the precision depends on the camera hardware, |
| 241 | // autofocus algorithm, the focus area, and the scene. The error can be |
| 242 | // large and it should be only used as a reference. |
Wu-cheng Li | 09a2ab9 | 2010-05-13 19:31:02 +0800 | [diff] [blame] | 243 | // |
| 244 | // Far focus distance > optimal focus distance > near focus distance. If |
| 245 | // the far focus distance is infinity, the value should be "Infinity" (case |
| 246 | // sensitive). The format is three float values separated by commas. The |
| 247 | // first is near focus distance. The second is optimal focus distance. The |
| 248 | // third is far focus distance. |
| 249 | // Example value: "0.95,1.9,Infinity" or "0.049,0.05,0.051". Read only. |
| 250 | static const char KEY_FOCUS_DISTANCES[]; |
| 251 | |
Wu-cheng Li | 0b0279e | 2010-05-28 17:32:41 +0800 | [diff] [blame] | 252 | // The image format for video frames. See CAMERA_MSG_VIDEO_FRAME in |
| 253 | // frameworks/base/include/camera/Camera.h. |
| 254 | // Example value: "yuv420sp" or PIXEL_FORMAT_XXX constants. Read only. |
| 255 | static const char KEY_VIDEO_FRAME_FORMAT[]; |
| 256 | |
Wu-cheng Li | 2b8aba2 | 2010-06-03 16:34:18 +0800 | [diff] [blame] | 257 | // Metering mode. This affects how camera determines exposure. |
| 258 | // Example value: "spot" or METERING_MODE_XXX constants. Read/write. |
| 259 | static const char KEY_METERING_MODE[]; |
Wu-cheng Li | d38bee5 | 2010-06-04 14:18:32 +0800 | [diff] [blame] | 260 | // Supported metering modes. |
| 261 | // Example value: "center-weighted,frame-average,spot". Read only. |
| 262 | static const char KEY_SUPPORTED_METERING_MODES[]; |
Wu-cheng Li | 2b8aba2 | 2010-06-03 16:34:18 +0800 | [diff] [blame] | 263 | |
Wu-cheng Li | d8d888e | 2010-03-08 15:28:48 -0800 | [diff] [blame] | 264 | // Value for KEY_ZOOM_SUPPORTED or KEY_SMOOTH_ZOOM_SUPPORTED. |
| 265 | static const char TRUE[]; |
| 266 | |
Wu-cheng Li | 09a2ab9 | 2010-05-13 19:31:02 +0800 | [diff] [blame] | 267 | // Value for KEY_FOCUS_DISTANCES. |
Wu-cheng Li | ae77ffa | 2010-05-15 13:05:04 +0800 | [diff] [blame] | 268 | static const char FOCUS_DISTANCE_INFINITY[]; |
Wu-cheng Li | 09a2ab9 | 2010-05-13 19:31:02 +0800 | [diff] [blame] | 269 | |
Wu-cheng Li | 4f1bff9 | 2010-02-20 17:47:04 +0800 | [diff] [blame] | 270 | // Values for white balance settings. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 271 | static const char WHITE_BALANCE_AUTO[]; |
| 272 | static const char WHITE_BALANCE_INCANDESCENT[]; |
| 273 | static const char WHITE_BALANCE_FLUORESCENT[]; |
| 274 | static const char WHITE_BALANCE_WARM_FLUORESCENT[]; |
| 275 | static const char WHITE_BALANCE_DAYLIGHT[]; |
| 276 | static const char WHITE_BALANCE_CLOUDY_DAYLIGHT[]; |
| 277 | static const char WHITE_BALANCE_TWILIGHT[]; |
| 278 | static const char WHITE_BALANCE_SHADE[]; |
| 279 | |
| 280 | // Values for effect settings. |
| 281 | static const char EFFECT_NONE[]; |
| 282 | static const char EFFECT_MONO[]; |
| 283 | static const char EFFECT_NEGATIVE[]; |
| 284 | static const char EFFECT_SOLARIZE[]; |
| 285 | static const char EFFECT_SEPIA[]; |
| 286 | static const char EFFECT_POSTERIZE[]; |
| 287 | static const char EFFECT_WHITEBOARD[]; |
| 288 | static const char EFFECT_BLACKBOARD[]; |
| 289 | static const char EFFECT_AQUA[]; |
| 290 | |
| 291 | // Values for antibanding settings. |
| 292 | static const char ANTIBANDING_AUTO[]; |
| 293 | static const char ANTIBANDING_50HZ[]; |
| 294 | static const char ANTIBANDING_60HZ[]; |
| 295 | static const char ANTIBANDING_OFF[]; |
| 296 | |
| 297 | // Values for flash mode settings. |
| 298 | // Flash will not be fired. |
| 299 | static const char FLASH_MODE_OFF[]; |
| 300 | // Flash will be fired automatically when required. The flash may be fired |
| 301 | // during preview, auto-focus, or snapshot depending on the driver. |
| 302 | static const char FLASH_MODE_AUTO[]; |
| 303 | // Flash will always be fired during snapshot. The flash may also be |
| 304 | // fired during preview or auto-focus depending on the driver. |
| 305 | static const char FLASH_MODE_ON[]; |
| 306 | // Flash will be fired in red-eye reduction mode. |
| 307 | static const char FLASH_MODE_RED_EYE[]; |
| 308 | // Constant emission of light during preview, auto-focus and snapshot. |
| 309 | // This can also be used for video recording. |
| 310 | static const char FLASH_MODE_TORCH[]; |
| 311 | |
| 312 | // Values for scene mode settings. |
| 313 | static const char SCENE_MODE_AUTO[]; |
| 314 | static const char SCENE_MODE_ACTION[]; |
| 315 | static const char SCENE_MODE_PORTRAIT[]; |
| 316 | static const char SCENE_MODE_LANDSCAPE[]; |
| 317 | static const char SCENE_MODE_NIGHT[]; |
| 318 | static const char SCENE_MODE_NIGHT_PORTRAIT[]; |
| 319 | static const char SCENE_MODE_THEATRE[]; |
| 320 | static const char SCENE_MODE_BEACH[]; |
| 321 | static const char SCENE_MODE_SNOW[]; |
| 322 | static const char SCENE_MODE_SUNSET[]; |
| 323 | static const char SCENE_MODE_STEADYPHOTO[]; |
| 324 | static const char SCENE_MODE_FIREWORKS[]; |
| 325 | static const char SCENE_MODE_SPORTS[]; |
| 326 | static const char SCENE_MODE_PARTY[]; |
| 327 | static const char SCENE_MODE_CANDLELIGHT[]; |
Wu-cheng Li | 465d5a7 | 2010-03-29 17:21:28 +0800 | [diff] [blame] | 328 | // Applications are looking for a barcode. Camera driver will be optimized |
| 329 | // for barcode reading. |
| 330 | static const char SCENE_MODE_BARCODE[]; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 331 | |
| 332 | // Formats for setPreviewFormat and setPictureFormat. |
| 333 | static const char PIXEL_FORMAT_YUV422SP[]; |
| 334 | static const char PIXEL_FORMAT_YUV420SP[]; // NV21 |
| 335 | static const char PIXEL_FORMAT_YUV422I[]; // YUY2 |
| 336 | static const char PIXEL_FORMAT_RGB565[]; |
| 337 | static const char PIXEL_FORMAT_JPEG[]; |
| 338 | |
| 339 | // Values for focus mode settings. |
Wu-cheng Li | 85b6e16 | 2010-08-17 13:44:35 -0700 | [diff] [blame] | 340 | // Auto-focus mode. Applications should call |
| 341 | // CameraHardwareInterface.autoFocus to start the focus in this mode. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 342 | static const char FOCUS_MODE_AUTO[]; |
| 343 | // Focus is set at infinity. Applications should not call |
| 344 | // CameraHardwareInterface.autoFocus in this mode. |
| 345 | static const char FOCUS_MODE_INFINITY[]; |
Wu-cheng Li | 85b6e16 | 2010-08-17 13:44:35 -0700 | [diff] [blame] | 346 | // Macro (close-up) focus mode. Applications should call |
| 347 | // CameraHardwareInterface.autoFocus to start the focus in this mode. |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 348 | static const char FOCUS_MODE_MACRO[]; |
| 349 | // Focus is fixed. The camera is always in this mode if the focus is not |
| 350 | // adjustable. If the camera has auto-focus, this mode can fix the |
| 351 | // focus, which is usually at hyperfocal distance. Applications should |
| 352 | // not call CameraHardwareInterface.autoFocus in this mode. |
| 353 | static const char FOCUS_MODE_FIXED[]; |
Wu-cheng Li | 465d5a7 | 2010-03-29 17:21:28 +0800 | [diff] [blame] | 354 | // Extended depth of field (EDOF). Focusing is done digitally and |
| 355 | // continuously. Applications should not call |
| 356 | // CameraHardwareInterface.autoFocus in this mode. |
| 357 | static const char FOCUS_MODE_EDOF[]; |
Wu-cheng Li | c6e88fd | 2010-08-05 11:50:25 -0700 | [diff] [blame] | 358 | // Continuous auto focus mode. The camera continuously tries to focus. This |
| 359 | // is ideal for shooting video or shooting photo of moving object. Auto |
| 360 | // focus starts when the parameter is set. Applications should not call |
Wu-cheng Li | 85b6e16 | 2010-08-17 13:44:35 -0700 | [diff] [blame] | 361 | // CameraHardwareInterface.autoFocus in this mode. To stop continuous |
| 362 | // focus, applications should change the focus mode to other modes. |
Wu-cheng Li | 4bf7ace | 2010-05-06 16:47:30 +0800 | [diff] [blame] | 363 | static const char FOCUS_MODE_CONTINUOUS[]; |
| 364 | |
Wu-cheng Li | 2b8aba2 | 2010-06-03 16:34:18 +0800 | [diff] [blame] | 365 | // The camera determines the exposure by giving more weight to the |
| 366 | // central part of the scene. |
| 367 | static const char METERING_MODE_CENTER_WEIGHTED[]; |
| 368 | // The camera determines the exposure by averaging the entire scene, |
| 369 | // giving no weighting to any particular area. |
| 370 | static const char METERING_MODE_FRAME_AVERAGE[]; |
| 371 | // The camera determines the exposure by a very small area of the scene, |
| 372 | // typically the center. |
| 373 | static const char METERING_MODE_SPOT[]; |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 374 | |
| 375 | private: |
| 376 | DefaultKeyedVector<String8,String8> mMap; |
| 377 | }; |
| 378 | |
| 379 | }; // namespace android |
| 380 | |
| 381 | #endif |