diff options
author | Wu-cheng Li <wuchengli@google.com> | 2011-02-22 15:49:25 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2011-02-24 18:19:48 +0800 |
commit | d42c6e8904f1648a7dedcd1dc27b926951f8ff28 (patch) | |
tree | 840c0ee7b94dfb325a2e20e3cfb0af099c3213f7 /include | |
parent | 1de41a66e3e7b548ee44e6654580e5f6f7265b11 (diff) | |
download | frameworks_av-d42c6e8904f1648a7dedcd1dc27b926951f8ff28.zip frameworks_av-d42c6e8904f1648a7dedcd1dc27b926951f8ff28.tar.gz frameworks_av-d42c6e8904f1648a7dedcd1dc27b926951f8ff28.tar.bz2 |
Add YV12 preview format to camera parameter constants.
bug:3463624
Change-Id: I8f2992dadfd3fb9e3c9d67743e52da7f3212827e
Diffstat (limited to 'include')
-rw-r--r-- | include/camera/CameraParameters.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/camera/CameraParameters.h b/include/camera/CameraParameters.h index 431aaa4..da2f049 100644 --- a/include/camera/CameraParameters.h +++ b/include/camera/CameraParameters.h @@ -417,11 +417,10 @@ public: // Pixel color formats for KEY_PREVIEW_FORMAT, KEY_PICTURE_FORMAT, // and KEY_VIDEO_FRAME_FORMAT - // Planar variant of the YUV420 color format - static const char PIXEL_FORMAT_YUV420P[]; static const char PIXEL_FORMAT_YUV422SP[]; static const char PIXEL_FORMAT_YUV420SP[]; // NV21 static const char PIXEL_FORMAT_YUV422I[]; // YUY2 + static const char PIXEL_FORMAT_YUV420P[]; // YV12 static const char PIXEL_FORMAT_RGB565[]; static const char PIXEL_FORMAT_JPEG[]; |