<div dir="ltr">Thanks, Praveen - an alternative patch pushed to take care of this (silly) warning. <br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Sep 9, 2014 at 11:29 AM,  <span dir="ltr"><<a href="mailto:praveen@multicorewareinc.com" target="_blank">praveen@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 Praveen Tiwari<br>
# Date 1410242347 -19800<br>
# Node ID 5026f08bd7d64ab0ee22dcc98dd034030aa65db9<br>
# Parent  7510b362ca969d850d33b10acb37f3e5a6d6b7dc<br>
search.cpp: fixed type conversion warning<br>
<br>
diff -r 7510b362ca96 -r 5026f08bd7d6 source/encoder/search.cpp<br>
--- a/source/encoder/search.cpp Tue Sep 09 11:07:59 2014 +0530<br>
+++ b/source/encoder/search.cpp Tue Sep 09 11:29:07 2014 +0530<br>
@@ -1443,7 +1443,8 @@<br>
             m_entropyCoder->load(m_rdEntropyCoders[depth][CI_CURR_BEST]);<br>
<br>
             // determine residual for partition<br>
-            puDistY = puCost = 0;<br>
+            puDistY = 0;<br>
+            puCost  = 0;<br>
             xRecurIntraCodingQT(cu, initTrDepth, partOffset, fencYuv, predYuv, resiYuv, puDistY, true, puCost, depthRange);<br>
<br>
             // check r-d cost<br>
@@ -1462,7 +1463,8 @@<br>
         m_entropyCoder->load(m_rdEntropyCoders[depth][CI_CURR_BEST]);<br>
<br>
         // determine residual for partition<br>
-        puDistY = puCost = 0;<br>
+        puDistY = 0;<br>
+        puCost  = 0;<br>
         xRecurIntraCodingQT(cu, initTrDepth, partOffset, fencYuv, predYuv, resiYuv, puDistY, false, puCost, depthRange);<br>
<br>
         overallDistY += (puCost >= bestPUCost) ? bestPUDistY : puDistY;<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>
</blockquote></div><br></div>