<div dir="ltr">From 2386efcddfd6ff4b78bcf4493bf83698874e44a1 Mon Sep 17 00:00:00 2001<br>From: Ponsanthini <<a href="mailto:ponsanthini.arunchalam@multicorewareinc.com">ponsanthini.arunchalam@multicorewareinc.com</a>><br>Date: Tue, 7 Jan 2025 17:09:44 +0530<br>Subject: [PATCH] Fix max supported input resolution check<br><br>---<br> source/common/param.cpp | 2 +-<br> 1 file changed, 1 insertion(+), 1 deletion(-)<br><br>diff --git a/source/common/param.cpp b/source/common/param.cpp<br>index 0fa1cffa2..ead908013 100755<br>--- a/source/common/param.cpp<br>+++ b/source/common/param.cpp<br>@@ -1667,7 +1667,7 @@ int x265_check_params(x265_param* param)<br> {<br> #define CHECK(expr, msg) check_failed |= _confirm(param, expr, msg)<br>     int check_failed = 0; /* abort if there is a fatal configuration problem */<br>-    CHECK((param->sourceWidth >= 8192 && param->sourceHeight >= 4320), "Input video resolution exceeds the maximum supported 8K resolution of 8192x4320");<br>+    CHECK((param->sourceWidth > 8192 && param->sourceHeight > 4320), "Input video resolution exceeds the maximum supported 8K resolution of 8192x4320");<br>     CHECK(param->uhdBluray == 1 && (X265_DEPTH != 10 || param->internalCsp != 1 || param->interlaceMode != 0),<br>         "uhd-bd: bit depth, chroma subsample, source picture type must be 10, 4:2:0, progressive");<br>     CHECK(param->maxCUSize != 64 && param->maxCUSize != 32 && param->maxCUSize != 16,<br>-- <br>2.39.2<br><br></div>