<div dir="ltr">From 36b088057f731d9b1ac8ac52df03fd95d2692430 Mon Sep 17 00:00:00 2001<br>From: Somu Vineela <<a href="mailto:somu@multicorewareinc.com">somu@multicorewareinc.com</a>><br>Date: Mon, 7 Mar 2022 10:13:08 +0530<br>Subject: [PATCH] Fix boundary case for Gaussian filter<br><br>---<br> source/encoder/slicetype.cpp | 2 +-<br> 1 file changed, 1 insertion(+), 1 deletion(-)<br><br>diff --git a/source/encoder/slicetype.cpp b/source/encoder/slicetype.cpp<br>index e77f0ac70..1222a8511 100644<br>--- a/source/encoder/slicetype.cpp<br>+++ b/source/encoder/slicetype.cpp<br>@@ -184,7 +184,7 @@ void edgeFilter(Frame *curFrame, x265_param* param)<br>     {<br>         for (int colNum = 0; colNum < width; colNum++)<br>         {<br>-            if ((rowNum >= 2) && (colNum >= 2) && (rowNum != height - 2) && (colNum != width - 2)) //Ignoring the border pixels of the picture<br>+            if ((rowNum >= 2) && (colNum >= 2) && (rowNum < height - 2) && (colNum < width - 2)) //Ignoring the border pixels of the picture<br>             {<br>                 /*  5x5 Gaussian filter<br>                     [2   4   5   4   2]<br>-- <br>2.30.0.windows.1<br><br></div>