diff options
| author | Eino-Ville Talvala <etalvala@google.com> | 2012-07-18 17:50:46 -0700 | 
|---|---|---|
| committer | Eino-Ville Talvala <etalvala@google.com> | 2012-07-18 17:53:39 -0700 | 
| commit | f6d9696bf1db133d16dd8981380e1bfbd2e0bc70 (patch) | |
| tree | 9599fa0f762f48aaffb17429f4b885236734d07b /include/camera | |
| parent | ea682976030a3930f6ee49b33b7e21abfc68174a (diff) | |
| download | frameworks_av-f6d9696bf1db133d16dd8981380e1bfbd2e0bc70.zip frameworks_av-f6d9696bf1db133d16dd8981380e1bfbd2e0bc70.tar.gz frameworks_av-f6d9696bf1db133d16dd8981380e1bfbd2e0bc70.tar.bz2  | |
Camera: Add OPAQUE pixel format to CameraParameters
This is only used to support recording with HAL 2 in the
KEY_VIDEO_FRAME_FORMAT parameter, and is not exposed to applications.
Bug: 6243944
Change-Id: I5976a748d199ae98189bd03af5bbd9e18cbd6bf0
Diffstat (limited to 'include/camera')
| -rw-r--r-- | include/camera/CameraParameters.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/include/camera/CameraParameters.h b/include/camera/CameraParameters.h index 36248a0..4d5aa36 100644 --- a/include/camera/CameraParameters.h +++ b/include/camera/CameraParameters.h @@ -606,6 +606,8 @@ public:      // Raw bayer format used for images, which is 10 bit precision samples      // stored in 16 bit words. The filter pattern is RGGB.      static const char PIXEL_FORMAT_BAYER_RGGB[]; +    // Pixel format is not known to the framework +    static const char PIXEL_FORMAT_ANDROID_OPAQUE[];      // Values for focus mode settings.      // Auto-focus mode. Applications should call  | 
