aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/mtk-jpeg
diff options
context:
space:
mode:
authorXia Jiang <xia.jiang@mediatek.com>2020-08-14 09:11:50 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-08-28 15:31:17 +0200
commit79aa1e6859af35f693bf13ac7eb94b5b6fd250e9 (patch)
treeb426d9345d59d10ae9a99a6387265fa9241583bd /drivers/media/platform/mtk-jpeg
parentmedia: platform: Delete vidioc_s_selection ioctl of jpeg dec (diff)
downloadlinux-dev-79aa1e6859af35f693bf13ac7eb94b5b6fd250e9.tar.xz
linux-dev-79aa1e6859af35f693bf13ac7eb94b5b6fd250e9.zip
media: platform: Change the maximum width and height supported by JPEG dec
The maximum width and height supported by JPEG dec is 65535, so change them from 8192 to 65535. Reviewed-by: Tomasz Figa <tfiga@chromium.org> Signed-off-by: Xia Jiang <xia.jiang@mediatek.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/platform/mtk-jpeg')
-rw-r--r--drivers/media/platform/mtk-jpeg/mtk_jpeg_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.h b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.h
index 9b46b0507187..6106cfaba311 100644
--- a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.h
+++ b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.h
@@ -25,8 +25,8 @@
#define MTK_JPEG_MIN_WIDTH 32U
#define MTK_JPEG_MIN_HEIGHT 32U
-#define MTK_JPEG_MAX_WIDTH 8192U
-#define MTK_JPEG_MAX_HEIGHT 8192U
+#define MTK_JPEG_MAX_WIDTH 65535U
+#define MTK_JPEG_MAX_HEIGHT 65535U
#define MTK_JPEG_DEFAULT_SIZEIMAGE (1 * 1024 * 1024)