X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=blobdiff_plain;f=target%2Flinux%2Fbcm27xx%2Fpatches-5.10%2F950-0586-staging-bcm2835-codec-Do-not-update-crop-from-S_FMT-.patch;fp=target%2Flinux%2Fbcm27xx%2Fpatches-5.10%2F950-0586-staging-bcm2835-codec-Do-not-update-crop-from-S_FMT-.patch;h=0000000000000000000000000000000000000000;hp=cace71630be699a7ccace62519259385ebcb6a0b;hb=d5c4f24b2af991df2ec24df1a3f906049370f59f;hpb=99ad84b6d9727a63f99a16e0b8386747262e3433 diff --git a/target/linux/bcm27xx/patches-5.10/950-0586-staging-bcm2835-codec-Do-not-update-crop-from-S_FMT-.patch b/target/linux/bcm27xx/patches-5.10/950-0586-staging-bcm2835-codec-Do-not-update-crop-from-S_FMT-.patch deleted file mode 100644 index cace71630b..0000000000 --- a/target/linux/bcm27xx/patches-5.10/950-0586-staging-bcm2835-codec-Do-not-update-crop-from-S_FMT-.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 0409260a821dd9b8d3d8e5f4fbdee1b6f892bd4d Mon Sep 17 00:00:00 2001 -From: Dave Stevenson -Date: Thu, 15 Apr 2021 11:07:55 +0100 -Subject: [PATCH] staging/bcm2835-codec: Do not update crop from S_FMT - after res change - -During decode, setting the CAPTURE queue format was setting the crop -rectangle to the requested height before aligning up the format to -cater for simple clients that weren't expecting to deal with cropping -and the SELECTION API. -This caused problems on some resolution change events if the client -didn't also then use the selection API. - -Disable the crop update after a resolution change. - -Signed-off-by: Dave Stevenson ---- - .../vc04_services/bcm2835-codec/bcm2835-v4l2-codec.c | 7 +++++++ - 1 file changed, 7 insertions(+) - ---- a/drivers/staging/vc04_services/bcm2835-codec/bcm2835-v4l2-codec.c -+++ b/drivers/staging/vc04_services/bcm2835-codec/bcm2835-v4l2-codec.c -@@ -999,6 +999,13 @@ static void handle_fmt_changed(struct bc - - q_data->crop_width = format->es.video.crop.width; - q_data->crop_height = format->es.video.crop.height; -+ /* -+ * Stop S_FMT updating crop_height should it be unaligned. -+ * Client can still update the crop region via S_SELECTION should it -+ * really want to, but the decoder is likely to complain that the -+ * format then doesn't match. -+ */ -+ q_data->selection_set = true; - q_data->bytesperline = get_bytesperline(format->es.video.width, - q_data->fmt); -