diff options
author | Jeong-Seok Yang <jseok.yang@samsung.com> | 2011-01-17 22:21:44 +0900 |
---|---|---|
committer | Simon Wilson <simonwilson@google.com> | 2011-01-20 10:47:23 -0800 |
commit | b446deb39c24597cac137f1004e72941ae6e1a83 (patch) | |
tree | e62ae0a49633e01a93a81c05718cf0d6b23be2e1 /libcamera | |
parent | 050e57e0f0738fa9c7312de75c6223572ba5d529 (diff) | |
download | device_samsung_crespo-b446deb39c24597cac137f1004e72941ae6e1a83.zip device_samsung_crespo-b446deb39c24597cac137f1004e72941ae6e1a83.tar.gz device_samsung_crespo-b446deb39c24597cac137f1004e72941ae6e1a83.tar.bz2 |
libcamera: Increase buffer to 11 from 8 for fixing tearing
Bug fix: Camcording video has tearing issues on low resolution or
in daylight condition. It is caused overwriting buffers
before processing recording. So we increase number of buffers.
Signed-off-by: Jeong-Seok Yang <jseok.yang@samsung.com>
Change-Id: I2a02183174a18472df2506c5f20f324644161c32
Diffstat (limited to 'libcamera')
-rw-r--r-- | libcamera/SecCamera.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcamera/SecCamera.h b/libcamera/SecCamera.h index 0580373..f3a2166 100644 --- a/libcamera/SecCamera.h +++ b/libcamera/SecCamera.h @@ -144,7 +144,7 @@ namespace android { #define BPP 2 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) -#define MAX_BUFFERS 8 +#define MAX_BUFFERS 11 /* * V 4 L 2 F I M C E X T E N S I O N S |