diff options
author | Harinarayan Bhatta <harinarayan@ti.com> | 2016-11-18 21:20:18 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-22 07:03:13 -0200 |
commit | 8028bfed42dd2f5b612be3cc346699bdf327e16c (patch) | |
tree | e71d3379d1cfd3396cf654a24a989e464eda9b94 /drivers/media/platform | |
parent | 823f4208b2284dcc7137b17d036e71a16199572c (diff) | |
download | blackbird-op-linux-8028bfed42dd2f5b612be3cc346699bdf327e16c.tar.gz blackbird-op-linux-8028bfed42dd2f5b612be3cc346699bdf327e16c.zip |
[media] media: ti-vpe: Increasing max buffer height and width
Increasing max buffer height and width to allow for padded buffers.
Signed-off-by: Harinarayan Bhatta <harinarayan@ti.com>
Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
Signed-off-by: Benoit Parrot <bparrot@ti.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/platform')
-rw-r--r-- | drivers/media/platform/ti-vpe/vpe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/ti-vpe/vpe.c b/drivers/media/platform/ti-vpe/vpe.c index e5d55575350f..c624f5db7f08 100644 --- a/drivers/media/platform/ti-vpe/vpe.c +++ b/drivers/media/platform/ti-vpe/vpe.c @@ -53,8 +53,8 @@ /* minimum and maximum frame sizes */ #define MIN_W 32 #define MIN_H 32 -#define MAX_W 1920 -#define MAX_H 1080 +#define MAX_W 2048 +#define MAX_H 1184 /* required alignments */ #define S_ALIGN 0 /* multiple of 1 */ |