This is the struct: <br><br>/* Current MB DCT coeffs */<br>&nbsp;&nbsp;&nbsp; struct<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DECLARE_ALIGNED( int, luma16x16_dc[16], 16 );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DECLARE_ALIGNED( int, chroma_dc[2][4], 16 );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // FIXME merge with union
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DECLARE_ALIGNED( int, luma8x8[4][64], 16 );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; union<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DECLARE_ALIGNED( int, residual_ac[15], 16 );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DECLARE_ALIGNED( int, luma4x4[16], 16 );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } block[16+8];
<br>&nbsp;&nbsp;&nbsp; } dct;<br><br>on line 355 of the common\common.h file.<br><br>You can access it almost everywhere with the h variable. (h-&gt;dct)<br><br>Victor<br><br><div><span class="gmail_quote">On 6/20/07, <b class="gmail_sendername">
Hoda Roodaki</b> &lt;<a href="mailto:hoda.roodaki@gmail.com">hoda.roodaki@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br><br>I want to find the variables which contain the DCT coefficeints and<br>its quantized values in the source code, Can anyone help me?<br><br>Thanks &amp; Regards<br>Hoda Roodaki,<br><br>--<br>This is the x264-devel mailing-list
<br>To unsubscribe, go to: <a href="http://developers.videolan.org/lists.html">http://developers.videolan.org/lists.html</a><br><br></blockquote></div><br>