<?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 H.264 stream receiving, but decode problem Help!!!! in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870094#M8835</link>
    <description>&lt;DIV&gt;Dear Sir/Madam,&lt;BR /&gt;&lt;BR /&gt;Please help, we require urgently &lt;BR /&gt;&lt;BR /&gt;We get mpeg4 and h264 stream from ip cam, remove RTP headers, and pass to UMC&lt;BR /&gt;&lt;BR /&gt;Only Mpeg4 strream is getting decoded and displayed properly, but when h264 stream is given for decoding ,italways returns -996 UMC_ERR_NOT_ENOUGH_DATA&lt;BR /&gt;please find the attached stream file&lt;BR /&gt;&lt;BR /&gt;My Code is given below&lt;BR /&gt;&lt;BR /&gt;Ipp32s width=320,height=240; &lt;BR /&gt;UMC::ColorFormat color_format=UMC::YV12;&lt;BR /&gt;UMC::MPEG4VideoDecoder *mpeg4Decoder ;&lt;BR /&gt;UMC::H264VideoDecoder *h264Decoder;&lt;BR /&gt;UMC::VideoDecoderParams *params ;&lt;BR /&gt;UMC::MediaData *pIn; &lt;BR /&gt;UMC::VideoData *pOut ;&lt;BR /&gt;&lt;BR /&gt;mpeg4Decoder = new UMC::MPEG4VideoDecoder();&lt;BR /&gt;h264Decoder = new UMC::H264VideoDecoder();&lt;BR /&gt;params = new UMC::VideoDecoderParams();&lt;BR /&gt;pIn = new UMC::MediaData;&lt;BR /&gt;pOut = new UMC::VideoData;&lt;BR /&gt;&lt;BR /&gt;//this function gets called for each frame(I/P/B) received&lt;BR /&gt;void Buffer(char *szData, int nLen)&lt;BR /&gt;{ &lt;BR /&gt;if(!g_bInit)//first frame initialize&lt;BR /&gt;{&lt;BR /&gt;g_bInit = true; &lt;BR /&gt;pIn-&amp;gt;SetBufferPointer((Ipp8u *)szData,nLen); &lt;BR /&gt;pIn-&amp;gt;SetDataSize(nLen);&lt;BR /&gt;params-&amp;gt;m_pData = pIn;&lt;BR /&gt;//if (UMC::UMC_OK != (mpeg4Decoder-&amp;gt;Init(params))) MPEG Decoder stream is working&lt;BR /&gt;//{&lt;BR /&gt;////Process errors &lt;BR /&gt;//}&lt;BR /&gt;&lt;BR /&gt;if (UMC::UMC_OK != (h264Decoder-&amp;gt;Init(params)))&lt;BR /&gt;{&lt;BR /&gt;//Process errors&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;pOut-&amp;gt;Init(width, height, color_format);&lt;BR /&gt;pOut-&amp;gt;Alloc();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;pIn-&amp;gt;SetBufferPointer((Ipp8u *)szData,nLen);&lt;BR /&gt;pIn-&amp;gt;SetDataSize(nLen);&lt;BR /&gt;// Decoding stream using GetFrame(pIn, pOut) method &lt;BR /&gt;//UMC::Status stRes = mpeg4Decoder-&amp;gt;GetFrame(pIn,pOut);&lt;BR /&gt;UMC::Status stRes = h264Decoder-&amp;gt;GetFrame(pIn,pOut);//always returns -996 ie UMC_ERR_NOT_ENOUGH_DATA&lt;BR /&gt;if(UMC::UMC_OK == stRes)&lt;BR /&gt;{&lt;BR /&gt;((CRTSPappDlg*)g_hWnd)-&amp;gt;staticDisplay.DisplayImage((BYTE*)pOut-&amp;gt;GetDataPointer(),width,height,24,"");// this code displays the frame&lt;BR /&gt;SaveImage((BYTE*)pOut-&amp;gt;GetDataPointer(),width,height,24);//this save to bmp file &lt;BR /&gt;} &lt;BR /&gt;&lt;BR /&gt;//delete mpeg4Decoder; //destructor automatically calls Close() method.&lt;BR /&gt;//delete h264Decoder; //destructor automatically calls Close() method.&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please help!!!!!!&lt;BR /&gt;thanks in advance&lt;/DIV&gt;</description>
    <pubDate>Fri, 09 Jan 2009 04:06:00 GMT</pubDate>
    <dc:creator>vikas_krv85</dc:creator>
    <dc:date>2009-01-09T04:06:00Z</dc:date>
    <item>
      <title>H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870094#M8835</link>
      <description>&lt;DIV&gt;Dear Sir/Madam,&lt;BR /&gt;&lt;BR /&gt;Please help, we require urgently &lt;BR /&gt;&lt;BR /&gt;We get mpeg4 and h264 stream from ip cam, remove RTP headers, and pass to UMC&lt;BR /&gt;&lt;BR /&gt;Only Mpeg4 strream is getting decoded and displayed properly, but when h264 stream is given for decoding ,italways returns -996 UMC_ERR_NOT_ENOUGH_DATA&lt;BR /&gt;please find the attached stream file&lt;BR /&gt;&lt;BR /&gt;My Code is given below&lt;BR /&gt;&lt;BR /&gt;Ipp32s width=320,height=240; &lt;BR /&gt;UMC::ColorFormat color_format=UMC::YV12;&lt;BR /&gt;UMC::MPEG4VideoDecoder *mpeg4Decoder ;&lt;BR /&gt;UMC::H264VideoDecoder *h264Decoder;&lt;BR /&gt;UMC::VideoDecoderParams *params ;&lt;BR /&gt;UMC::MediaData *pIn; &lt;BR /&gt;UMC::VideoData *pOut ;&lt;BR /&gt;&lt;BR /&gt;mpeg4Decoder = new UMC::MPEG4VideoDecoder();&lt;BR /&gt;h264Decoder = new UMC::H264VideoDecoder();&lt;BR /&gt;params = new UMC::VideoDecoderParams();&lt;BR /&gt;pIn = new UMC::MediaData;&lt;BR /&gt;pOut = new UMC::VideoData;&lt;BR /&gt;&lt;BR /&gt;//this function gets called for each frame(I/P/B) received&lt;BR /&gt;void Buffer(char *szData, int nLen)&lt;BR /&gt;{ &lt;BR /&gt;if(!g_bInit)//first frame initialize&lt;BR /&gt;{&lt;BR /&gt;g_bInit = true; &lt;BR /&gt;pIn-&amp;gt;SetBufferPointer((Ipp8u *)szData,nLen); &lt;BR /&gt;pIn-&amp;gt;SetDataSize(nLen);&lt;BR /&gt;params-&amp;gt;m_pData = pIn;&lt;BR /&gt;//if (UMC::UMC_OK != (mpeg4Decoder-&amp;gt;Init(params))) MPEG Decoder stream is working&lt;BR /&gt;//{&lt;BR /&gt;////Process errors &lt;BR /&gt;//}&lt;BR /&gt;&lt;BR /&gt;if (UMC::UMC_OK != (h264Decoder-&amp;gt;Init(params)))&lt;BR /&gt;{&lt;BR /&gt;//Process errors&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;pOut-&amp;gt;Init(width, height, color_format);&lt;BR /&gt;pOut-&amp;gt;Alloc();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;pIn-&amp;gt;SetBufferPointer((Ipp8u *)szData,nLen);&lt;BR /&gt;pIn-&amp;gt;SetDataSize(nLen);&lt;BR /&gt;// Decoding stream using GetFrame(pIn, pOut) method &lt;BR /&gt;//UMC::Status stRes = mpeg4Decoder-&amp;gt;GetFrame(pIn,pOut);&lt;BR /&gt;UMC::Status stRes = h264Decoder-&amp;gt;GetFrame(pIn,pOut);//always returns -996 ie UMC_ERR_NOT_ENOUGH_DATA&lt;BR /&gt;if(UMC::UMC_OK == stRes)&lt;BR /&gt;{&lt;BR /&gt;((CRTSPappDlg*)g_hWnd)-&amp;gt;staticDisplay.DisplayImage((BYTE*)pOut-&amp;gt;GetDataPointer(),width,height,24,"");// this code displays the frame&lt;BR /&gt;SaveImage((BYTE*)pOut-&amp;gt;GetDataPointer(),width,height,24);//this save to bmp file &lt;BR /&gt;} &lt;BR /&gt;&lt;BR /&gt;//delete mpeg4Decoder; //destructor automatically calls Close() method.&lt;BR /&gt;//delete h264Decoder; //destructor automatically calls Close() method.&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please help!!!!!!&lt;BR /&gt;thanks in advance&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Jan 2009 04:06:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870094#M8835</guid>
      <dc:creator>vikas_krv85</dc:creator>
      <dc:date>2009-01-09T04:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870095#M8836</link>
      <description>&lt;DIV&gt;When i use simple_player and play the attached file, it just prints&lt;BR /&gt;&lt;BR /&gt;Stream Type : H264PV&lt;BR /&gt;&lt;BR /&gt;and exits the application, notdecoding the video&lt;BR /&gt;&lt;BR /&gt;Please help!!!!!&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 Jan 2009 11:17:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870095#M8836</guid>
      <dc:creator>vikas_krv85</dc:creator>
      <dc:date>2009-01-09T11:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870096#M8837</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;thanks for reporting the issue (and attaching test file). Could you please also specify what version of IPP and audio-video-codecs sample do you use?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir</description>
      <pubDate>Sun, 11 Jan 2009 09:03:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870096#M8837</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2009-01-11T09:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870097#M8838</link>
      <description>&lt;DIV style="margin:0px;"&gt;IPP Version - 5.3.3.082&lt;BR /&gt;Samples : w_ipp-samples_p_5.3.095&lt;BR /&gt;&lt;BR /&gt;Please help !!!!! urgent&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Jan 2009 03:04:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870097#M8838</guid>
      <dc:creator>vikas_krv85</dc:creator>
      <dc:date>2009-01-12T03:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870098#M8839</link>
      <description>&lt;DIV style="margin:0px;"&gt;Well, you are using the previous version of IPP. Could you please check this issue on the latest, IPP 6.0 release?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Jan 2009 08:35:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870098#M8839</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2009-01-12T08:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870099#M8840</link>
      <description>&lt;DIV style="margin:0px;"&gt;Sorry for the trouble guys&lt;BR /&gt;&lt;BR /&gt;Got h264 stream up and running&lt;BR /&gt;&lt;BR /&gt;Problem was SPS and PPS was missing, so later found it from SDP , parsed and added to stream data and was able to get live display&lt;BR /&gt;&lt;BR /&gt;thanks&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Jan 2009 03:32:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870099#M8840</guid>
      <dc:creator>vikas_krv85</dc:creator>
      <dc:date>2009-01-13T03:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: H.264 stream receiving, but decode problem Help!!!!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870100#M8841</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Thanks for updating us on this. In any case I would recommend you to evaluate the latest IPP version.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir</description>
      <pubDate>Tue, 13 Jan 2009 05:54:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/H-264-stream-receiving-but-decode-problem-Help/m-p/870100#M8841</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2009-01-13T05:54:55Z</dc:date>
    </item>
  </channel>
</rss>

