8ddebeeedb8f9775cb7c7722383bb83fedfc420a
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.15 / 950-0291-rpivid_h265-Fix-width-height-typo.patch
1 From c8ff5702a2f40ecdd9915328a906002351c1e072 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Mon, 21 Sep 2020 14:02:44 +0100
4 Subject: [PATCH] rpivid_h265: Fix width/height typo
5
6 Signed-off-by: popcornmix <popcornmix@gmail.com>
7 ---
8 drivers/staging/media/rpivid/rpivid_h265.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11 --- a/drivers/staging/media/rpivid/rpivid_h265.c
12 +++ b/drivers/staging/media/rpivid/rpivid_h265.c
13 @@ -2178,7 +2178,7 @@ static int rpivid_h265_start(struct rpiv
14 if (w > 4096)
15 w = 4096;
16 if (h == 0)
17 - w = 1088;
18 + h = 1088;
19 if (h > 4096)
20 h = 4096;
21 wxh = w * h;