This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: atomisp: Change atomisp_enum_framesizes() too small cut off 
from 2/3th to 5/8th
Author:  Hans de Goede <hdego...@redhat.com>
Date:    Mon Jun 19 12:52:09 2023 +0200

Change atomisp_enum_framesizes() cut off for too small resolutions
from 2/3th to 5/8th this results in more resolutions being available
with some sensors.

E.g. this allows using 800x600 with a 1280x960 sensor.

Link: https://lore.kernel.org/r/20230619105212.303653-4-hdego...@redhat.com

Signed-off-by: Hans de Goede <hdego...@redhat.com>
Reviewed-by: Andy Shevchenko <a...@kernel.org>
Signed-off-by: Mauro Carvalho Chehab <mche...@kernel.org>

 drivers/staging/media/atomisp/pci/atomisp_ioctl.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

---

diff --git a/drivers/staging/media/atomisp/pci/atomisp_ioctl.c 
b/drivers/staging/media/atomisp/pci/atomisp_ioctl.c
index d2174156573a..047b9fb075d0 100644
--- a/drivers/staging/media/atomisp/pci/atomisp_ioctl.c
+++ b/drivers/staging/media/atomisp/pci/atomisp_ioctl.c
@@ -729,11 +729,11 @@ static int atomisp_enum_framesizes_crop_inner(struct 
atomisp_device *isp,
                        continue;
 
                /*
-                * Skip sizes where width and height are less then 2/3th of the
+                * Skip sizes where width and height are less then 5/8th of the
                 * sensor size to avoid sizes with a too small field of view.
                 */
-               if (frame_sizes[i].width < (active->width * 2 / 3) &&
-                   frame_sizes[i].height < (active->height * 2 / 3))
+               if (frame_sizes[i].width < (active->width * 5 / 8) &&
+                   frame_sizes[i].height < (active->height * 5 / 8))
                        continue;
 
                if (*valid_sizes == fsize->index) {

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to