3
0
Fork 0

camera: manage picture width and height separately

required for 3264x2448 <-> 3264x1968

Change-Id: I729402e208dccee8cf1d1368c1d2d0dcd1f08a3d
This commit is contained in:
athurh 2013-03-19 03:23:12 +01:00
parent 93861e1fda
commit 8f1e7b0333
1 changed files with 2 additions and 5 deletions

View File

@ -587,13 +587,10 @@ int exynos_camera_params_apply(struct exynos_camera *exynos_camera)
if (picture_size_string != NULL) {
sscanf(picture_size_string, "%dx%d", &picture_width, &picture_height);
if (picture_width != 0 && picture_height != 0 &&
picture_width != exynos_camera->picture_width &&
picture_height != exynos_camera->picture_height) {
if (picture_width != 0 && picture_width != exynos_camera->picture_width)
exynos_camera->picture_width = picture_width;
if (picture_height != 0 && picture_height != exynos_camera->picture_height)
exynos_camera->picture_height = picture_height;
}
}
picture_format_string = exynos_param_string_get(exynos_camera, "picture-format");