klte-common: Add UHD 4K video resolution

Change-Id: I2b6e43e0dfb10e3fd354f2da5cfc32adcdcf8120
This commit is contained in:
Tony Layher 2015-02-12 10:21:10 -08:00 committed by Ethan Chen
parent 8ffebf5fff
commit 858aea7096
1 changed files with 9 additions and 0 deletions

View File

@ -110,6 +110,15 @@ static char *camera_fixup_getparams(int __attribute__((unused)) id,
params.dump();
#endif
const char *videoSizeValues = params.get(
android::CameraParameters::KEY_SUPPORTED_VIDEO_SIZES);
if (videoSizeValues) {
char videoSizes[strlen(videoSizeValues) + 10 + 1];
sprintf(videoSizes, "3840x2160,%s", videoSizeValues);
params.set(android::CameraParameters::KEY_SUPPORTED_VIDEO_SIZES,
videoSizes);
}
/* If the vendor has HFR values but doesn't also expose that
* this can be turned off, fixup the params to tell the Camera
* that it really is okay to turn it off.