So there are another 2 places where uninitialized values are used?<br><br>I am not sure about where because I am using valgrind on Leopard.<br><br><div class="gmail_quote">2009/3/4 Jason Garrett-Glaser <span dir="ltr">&lt;<a href="mailto:darkshikari@gmail.com">darkshikari@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">2009/3/3 191919 &lt;<a href="mailto:191919@gmail.com">191919@gmail.com</a>&gt;:<br>
<div><div></div><div class="h5">&gt; ==493== Conditional jump or move depends on uninitialised value(s)<br>
&gt; ==493==    at 0x47AA07: x264_me_search_ref (in /usr/local/bin/ffmpeg)<br>
&gt; ==493==<br>
&gt; ==493== Conditional jump or move depends on uninitialised value(s)<br>
&gt; ==493==    at 0x47B3E1: x264_me_search_ref (in /usr/local/bin/ffmpeg)<br>
&gt;<br>
&gt;  164     int omx, omy, pmx, pmy;<br>
&gt; ...<br>
&gt;  239             if( (bmx == omx) &amp; (bmy == omy) )<br>
&gt;  240                 break;<br>
&gt;<br>
&gt; omx and omy are not initialized.<br>
<br>
</div></div>Well, you know, except for the part where they are?<br>
<br>
#define DIA1_ITER( mx, my )\<br>
{\<br>
    omx = mx; omy = my;\<br>
    COST_MV_X4( 0,-1, 0,1, -1,0, 1,0 );\<br>
}<br>
<br>
Dark Shikari<br>
_______________________________________________<br>
x264-devel mailing list<br>
<a href="mailto:x264-devel@videolan.org">x264-devel@videolan.org</a><br>
<a href="http://mailman.videolan.org/listinfo/x264-devel" target="_blank">http://mailman.videolan.org/listinfo/x264-devel</a><br>
</blockquote></div><br>