<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: H.264 quant_codes compression don't work in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873229#M9199</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/264353"&gt;jbrossais@prynel.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;Please, help me !!!!!!!!!!!!!!!!!!!&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;Instead of using quant_code try using debug I think it will do what you want.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Oct 2008 11:06:36 GMT</pubDate>
    <dc:creator>Emmanuel_W_</dc:creator>
    <dc:date>2008-10-21T11:06:36Z</dc:date>
    <item>
      <title>H.264 quant_codes compression don't work</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873227#M9197</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I develop an application which encodes YUV stream to H.264. I have no problems when I put Rate Control to VBR (so with a bitrate).&lt;/P&gt;
&lt;P&gt;But QuantCodes doesn't work. I use Ipp 5.3.2.072 (Win32)&lt;/P&gt;
&lt;P&gt;This is my par file.&lt;/P&gt;
&lt;P&gt;/* CommentLine: H.264 Sequence.*/&lt;BR /&gt;stream.yuv /* name of source files */&lt;BR /&gt;200 /* number of frames to encode */&lt;BR /&gt;1 16 0 /* 1(reserved) , N (# of frames in between I frames), IDR interval. */&lt;BR /&gt;0 0 /* Number of B frames between I (or P) and next P, treat B as a reference (only 0 is supported!) */&lt;BR /&gt;1 1 0 /* num_ref_frames (2-16), minimum length of list1 for backward prediction (only 1 is supported!), number of slices. */&lt;BR /&gt;77 0 /* profile_idc (77-main, 100-high); level_idc (set 0 for automatic selection) (check that num_ref_frames and frame size are in accordance with the level) */&lt;BR /&gt;768 /* horizontal_size */&lt;BR /&gt;576 /* vertical_size */&lt;BR /&gt;3 /* frame_rate_code [0,8] (0-30 fps,1-15 fps,2-24 fps,3-25 fps,4-30 fps,5-30 fps,6-50 fps,7-60 fps,8-60 fps)*/&lt;BR /&gt;1 8 8 /* High profile: chroma_format_idc (0 - monochrom, 1 - 420, 2 - 422), bit_depth_luma [8,12], bit_depth_chroma [8,12] */&lt;BR /&gt;0 8 0 0 0 /* High profile: aux_format_idc: [0,3], bit_depth_aux: [8,12], alpha_incr_flag: 0, 1; alpha_opaque_value: [0, 2^(bit_depth_aux + 9) -1]; alpha_transparent_value: [0, 2^(bit_depth_aux + 9) - 1] */&lt;BR /&gt;0 15 15 15 1000000 /* RC method(0 - quant_codes, 1 - CBR MBwise, 2 - CBR framewise, 3 - Debug); start qp values for I, P, B slices; bitrate (bits per second) */&lt;BR /&gt;2 0 8 8 /* ME method (1-6), subblock split, search x,search_y */&lt;BR /&gt;0 0 0 /* weighted prediction, weighted biprediction implicit weighted biprediction (not supported!)*/&lt;BR /&gt;1 0 /* direct type (0 - temporal 1 - spatial 2 - auto); direct_inference_flag */&lt;BR /&gt;0 0 0 /* disable_deblocking_idc: 1-- off, 0 - on, 2 -- on(without crossing slice boundaries); deblocking_filter_alpha, deblocking_filter_beta */&lt;BR /&gt;0 0 0 /* High profile: transform_8x8_mode: 0 -- off, 1 - on; 0 -- use standard, 1 -- use default scaling matrices for 8x8 quantization; qpprime_y_zero_transform_bypass_flag: (0, 1) */&lt;BR /&gt;768 /* display_horizontal_size */&lt;BR /&gt;576 /* display_vertical_size */&lt;BR /&gt;0 0 /* entropy coding mode (0-cavlc,1-cabac); cabac_init_idc (0,1,2) */&lt;BR /&gt;0 /* picture coding type (0 - only FRM, 1 - only FLD , 2 - only AFRM, 3 - pure PicAFF(no MBAFF) 4 PicAFF + MBAFF). Only 0 (FRM) is supported! */&lt;BR /&gt;0 sample.log /* speed/quality grade [0,3] (0-maximum speed, 3-maximum quality); log file name (unused) */&lt;BR /&gt;&lt;BR /&gt;The encode proccess works fine but the compress file has always the same size.&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Test 1 :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Rate Control=0 ; QuantI=0 ; QuantP=0 ; QuantB=0 Result : fps=26.58 &lt;STRONG&gt;size=22224ko&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Test 2 : &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Rate Control=0 ; QuantI=15 ; QuantP=15 ; QuantB=15  Result : fps=26.81 &lt;STRONG&gt;size=22224ko&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Test 3 : &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Rate Control=0 ; QuantI=51 ; QuantP=51 ; QuantB=51  Result : fps=27.09 &lt;STRONG&gt;size=22224ko&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;For information this is the configuration of the test machine :&lt;/P&gt;
&lt;P&gt;CPU : Core 2 Duo E6850 @ 3.00GHz&lt;/P&gt;
&lt;P&gt;RAM : 2Go&lt;/P&gt;
&lt;P&gt;OS : Windows XP Pro Sp2&lt;/P&gt;
&lt;P&gt;IDE : Visual Studio .NET 2002&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;How to resolve my problem? In fact settings don't change output file size.&lt;/P&gt;
&lt;P&gt;Is it a problem with my par file?&lt;/P&gt;
&lt;P&gt;For information I tried with Ipp 5.3.4.87 and 6.0.0.044BETA but I had the same result.&lt;/P&gt;
&lt;P&gt;My application also uses Mpeg-4 encoder and I have no problems to set QuantCode for RateControl.&lt;/P&gt;
&lt;P&gt;Best Regards.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2008 08:17:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873227#M9197</guid>
      <dc:creator>jerome-brossais</dc:creator>
      <dc:date>2008-10-06T08:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to encode H.264 with quant_codes</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873228#M9198</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Please, help me !!!!!!!!!!!!!!!!!!!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Oct 2008 09:18:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873228#M9198</guid>
      <dc:creator>jerome-brossais</dc:creator>
      <dc:date>2008-10-13T09:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 quant_codes compression don't work</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873229#M9199</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/264353"&gt;jbrossais@prynel.com&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;Please, help me !!!!!!!!!!!!!!!!!!!&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;Instead of using quant_code try using debug I think it will do what you want.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2008 11:06:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873229#M9199</guid>
      <dc:creator>Emmanuel_W_</dc:creator>
      <dc:date>2008-10-21T11:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 quant_codes compression don't work</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873230#M9200</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Thanks for your help. I try your modification and it's work fine. But the parameter H264_RCM_DEBUG don't appease me. Is it a debug mode? Intel's engineer can explain it?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Oct 2008 17:00:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-quant-codes-compression-don-t-work/m-p/873230#M9200</guid>
      <dc:creator>jerome-brossais</dc:creator>
      <dc:date>2008-10-23T17:00:19Z</dc:date>
    </item>
  </channel>
</rss>

