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"><<a href="mailto:darkshikari@gmail.com">darkshikari@gmail.com</a>></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 <<a href="mailto:191919@gmail.com">191919@gmail.com</a>>:<br>
<div><div></div><div class="h5">> ==493== Conditional jump or move depends on uninitialised value(s)<br>
> ==493== at 0x47AA07: x264_me_search_ref (in /usr/local/bin/ffmpeg)<br>
> ==493==<br>
> ==493== Conditional jump or move depends on uninitialised value(s)<br>
> ==493== at 0x47B3E1: x264_me_search_ref (in /usr/local/bin/ffmpeg)<br>
><br>
> 164 int omx, omy, pmx, pmy;<br>
> ...<br>
> 239 if( (bmx == omx) & (bmy == omy) )<br>
> 240 break;<br>
><br>
> 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>