<?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: DV100 720p in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898256#M12406</link>
    <description>Hi All&lt;BR /&gt;&lt;BR /&gt; I have the exact same shift with DV100 720p60 decode using the 5.3 IPP and latest ipp-samples. I made sure I was setting the codec up properly and tried commenting out the lines above, but no luck. DV25/50 and 1080i100 are all fine, just the 720p. Any other suggestions?&lt;BR /&gt;&lt;BR /&gt;James&lt;BR /&gt;</description>
    <pubDate>Fri, 18 Jan 2008 04:53:34 GMT</pubDate>
    <dc:creator>drastic</dc:creator>
    <dc:date>2008-01-18T04:53:34Z</dc:date>
    <item>
      <title>DV100 720p</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898253#M12403</link>
      <description>Hi, I am having a problem decoding DV100 720p. Every even frame is shifted up a 1/4 frame. The decoder works for 1080i. Is there some variable I am not setting correctly?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;Arvin&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Oct 2007 21:09:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898253#M12403</guid>
      <dc:creator>arvinzchan</dc:creator>
      <dc:date>2007-10-26T21:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: DV100 720p</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898254#M12404</link>
      <description>&lt;P&gt;Hi Arvin,&lt;/P&gt;
&lt;P&gt;there is comment from our expert:&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;FONT face="Times New Roman" size="3"&gt;&lt;SPAN&gt;That situation will happen if you call GetFrame() method without initialization of codec. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="Times New Roman" size="3"&gt;&lt;SPAN&gt;Please check that the codec is initializedwith the following variables:&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN&gt;m_System = System720_60p;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN&gt;m_nSystem720_LastDecodedChannel = 0;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN&gt;m_nWidth = 1280;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN&gt;m_nHeight = 720;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN&gt;(They are needed for DV00_720p decoding)&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2007 08:20:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898254#M12404</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-11-06T08:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: DV100 720p</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898255#M12405</link>
      <description>Hi Vladimir,&lt;BR /&gt;&lt;BR /&gt;Thanks for getting back to me. Turns out I was initializing the codec correctly. I was setting the width x height to 1280x720 so it does recognize the video as 720p.&lt;BR /&gt;&lt;BR /&gt;The problem turns out to be in GetFrame() itself. I fixed the issue by not changing &lt;FONT face="Courier New" size="2"&gt;&lt;SPAN&gt;m_nSystem720_LastDecodedChannel = 2&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New"&gt;if(m_System == System720_60p)&lt;BR /&gt;{&lt;BR /&gt; //if(m_nSystem720_LastDecodedChannel == 0)&lt;BR /&gt; // m_nSystem720_LastDecodedChannel = 2;&lt;BR /&gt; //else&lt;BR /&gt; m_nSystem720_LastDecodedChannel = 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;Commenting out the above code in GetFrame() fixed the problem for me.&lt;BR /&gt;&lt;BR /&gt;Regard,&lt;BR /&gt;Arvin&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Nov 2007 18:57:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898255#M12405</guid>
      <dc:creator>arvinzchan</dc:creator>
      <dc:date>2007-11-09T18:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: DV100 720p</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898256#M12406</link>
      <description>Hi All&lt;BR /&gt;&lt;BR /&gt; I have the exact same shift with DV100 720p60 decode using the 5.3 IPP and latest ipp-samples. I made sure I was setting the codec up properly and tried commenting out the lines above, but no luck. DV25/50 and 1080i100 are all fine, just the 720p. Any other suggestions?&lt;BR /&gt;&lt;BR /&gt;James&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jan 2008 04:53:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898256#M12406</guid>
      <dc:creator>drastic</dc:creator>
      <dc:date>2008-01-18T04:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: DV100 720p</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898257#M12407</link>
      <description>I guess another, more popular question might be, is anyone else seeing this problem in the 5.3 version of IPP?&lt;BR /&gt;&lt;BR /&gt;Thanks, J&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Jan 2008 19:51:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898257#M12407</guid>
      <dc:creator>drastic</dc:creator>
      <dc:date>2008-01-23T19:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: DV100 720p</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898258#M12408</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;there is common recomendations from our expert:&lt;/P&gt;
&lt;P&gt;1. method Init should be called before GetFrame&lt;/P&gt;
&lt;P&gt;2. variable m_nSystem720_LastDecodedChannel should be set to 0 (zero) at initialization.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2008 11:32:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/DV100-720p/m-p/898258#M12408</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-01-24T11:32:09Z</dc:date>
    </item>
  </channel>
</rss>

