This is the struct: <br><br>/* Current MB DCT coeffs */<br> struct<br> {<br> DECLARE_ALIGNED( int, luma16x16_dc[16], 16 );<br> DECLARE_ALIGNED( int, chroma_dc[2][4], 16 );<br> // FIXME merge with union
<br> DECLARE_ALIGNED( int, luma8x8[4][64], 16 );<br> union<br> {<br> DECLARE_ALIGNED( int, residual_ac[15], 16 );<br> DECLARE_ALIGNED( int, luma4x4[16], 16 );<br> } block[16+8];
<br> } 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->dct)<br><br>Victor<br><br><div><span class="gmail_quote">On 6/20/07, <b class="gmail_sendername">
Hoda Roodaki</b> <<a href="mailto:hoda.roodaki@gmail.com">hoda.roodaki@gmail.com</a>> 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 & 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>