<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Nov 11, 2013 at 8:07 AM, Steve Borho <span dir="ltr"><<a href="mailto:steve@borho.org" target="_blank">steve@borho.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">
<div class="im">On Sat, Nov 9, 2013 at 11:53 PM,  <span dir="ltr"><<a href="mailto:aarthi@multicorewareinc.com" target="_blank">aarthi@multicorewareinc.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"># HG changeset patch<br>
# User Aarthi Thirumalai<<a href="mailto:aarthi@multicorewareinc.com" target="_blank">aarthi@multicorewareinc.com</a>><br>
# Date 1384062755 -19800<br>
#      Sun Nov 10 11:22:35 2013 +0530<br>
# Node ID 82c1059d0960d5cbfead3dae61956e8257ff0eb6<br>
# Parent  9d74638c3640679d09264b793afdf3ffc58a9107<br>
TComPicYuv: fix padding issue<br>
<br>
diff -r 9d74638c3640 -r 82c1059d0960 source/Lib/TLibCommon/TComPicYuv.cpp<br>
--- a/source/Lib/TLibCommon/TComPicYuv.cpp      Sat Nov 09 20:14:24 2013 -0600<br>
+++ b/source/Lib/TLibCommon/TComPicYuv.cpp      Sun Nov 10 11:22:35 2013 +0530<br>
@@ -209,9 +209,9 @@<br>
<br>
     /* internal pad to multiple of 16x16 blocks */<br>
     uint8_t rem = width & 15;<br></blockquote><div><br></div></div><div>I changed this line yesterday to use width instead of m_picWidth.  I think that is sufficient to fix the padding.  Do you agree?</div><div> Fine :) </div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">

-    padx = rem ? 16 - rem : padx;<br>
+    padx += rem ? 16 - rem : padx;<br>
     rem = width & 15;<br>
-    pady = rem ? 16 - rem : pady;<br>
+    pady += rem ? 16 - rem : pady;<br>
<br>
 #if HIGH_BIT_DEPTH<br>
     if (pic.bitDepth > 8)<br></div>
_______________________________________________<br>
x265-devel mailing list<br>
<a href="mailto:x265-devel@videolan.org" target="_blank">x265-devel@videolan.org</a><br>
<a href="https://mailman.videolan.org/listinfo/x265-devel" target="_blank">https://mailman.videolan.org/listinfo/x265-devel</a><span class="HOEnZb"><font color="#888888"><br>
</font></span></blockquote></div><span class="HOEnZb"><font color="#888888"><br><br clear="all"><div><br></div>-- <br>Steve Borho
</font></span></div></div>
<br>_______________________________________________<br>
x265-devel mailing list<br>
<a href="mailto:x265-devel@videolan.org">x265-devel@videolan.org</a><br>
<a href="https://mailman.videolan.org/listinfo/x265-devel" target="_blank">https://mailman.videolan.org/listinfo/x265-devel</a><br>
<br></blockquote></div><br></div></div>