<?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: RE: umc_socket_reader.h in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892775#M11734</link>
    <description>&lt;P&gt;Hello Sven,&lt;/P&gt;
&lt;P&gt;Yes I have implemented my own SocketReader class. I spawn the stream reader thread from Init method and use a 10 MB buffer.&lt;/P&gt;
&lt;P&gt;The reason for choosing 10 MB is quite arbitary, I just wanted to buffer 2-3 secs of data. You are pretty much on the right track. &lt;/P&gt;
&lt;P&gt;However, I see a few artifacts in the video which I suspect is due to my buggy implementation of CSocketReader.&lt;/P&gt;
&lt;P&gt;Please let me know if you want to see my code and I can mail it to you.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Aug 2008 00:20:07 GMT</pubDate>
    <dc:creator>pushkar_p</dc:creator>
    <dc:date>2008-08-18T00:20:07Z</dc:date>
    <item>
      <title>RE: umc_socket_reader.h</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892771#M11730</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm using IPP sample source code (ver 5.3) to decode a MPEGTS stream. I've got it working for a .ts file, but now I need to read a TS stream from the network. Is there an implementation of DataReader interface for network reading. I went to the umc_readers.h and saw the following code (which is disabled since UMC_ENABLE_SOCKET_READER is not defined).&lt;/P&gt;
&lt;P&gt;#if defined (UMC_ENABLE_SOCKET_READER)&lt;BR /&gt;#include "umc_socket_reader.h"&lt;BR /&gt;#endif&lt;/P&gt;
&lt;P&gt;But I can't find the umc_socket_reader.h. Am I missing something or is this just supposed to be a placeholder for actual implementation by the developer?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Pushkar&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2008 18:56:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892771#M11730</guid>
      <dc:creator>pushkar_p</dc:creator>
      <dc:date>2008-05-05T18:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: RE: umc_socket_reader.h</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892772#M11731</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;We do not have implementation of socket reader and there is no short term plans to work on that. So it is up to you to implement it.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2008 19:03:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892772#M11731</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-05-05T19:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: RE: umc_socket_reader.h</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892773#M11732</link>
      <description>&lt;P&gt;Hello Vladimir,&lt;/P&gt;
&lt;P&gt;Thanks, just wanted to confirm before proceeding with my own implementation.&lt;/P&gt;
&lt;P&gt;pushkar&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2008 19:12:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892773#M11732</guid>
      <dc:creator>pushkar_p</dc:creator>
      <dc:date>2008-05-05T19:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: RE: umc_socket_reader.h</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892774#M11733</link>
      <description>Hi Pushkar,&lt;BR /&gt;&lt;BR /&gt;Did you implement your socketreader class ? Currently i'm working on same thing. I have few questions regarding socket implementation. How big buffer did you use for saving streams, did you use threading for stream reading ? I was thinking of initializing thread from SocketReader::Init function which will get stream and put it into a memory stack and than in ::CacheData and ::ReadData copy chunks of memory to data pointer and clear it from memory.&lt;BR /&gt;&lt;BR /&gt;Any suggestions ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt; Sven&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jul 2008 12:57:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892774#M11733</guid>
      <dc:creator>gossamer</dc:creator>
      <dc:date>2008-07-14T12:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: RE: umc_socket_reader.h</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892775#M11734</link>
      <description>&lt;P&gt;Hello Sven,&lt;/P&gt;
&lt;P&gt;Yes I have implemented my own SocketReader class. I spawn the stream reader thread from Init method and use a 10 MB buffer.&lt;/P&gt;
&lt;P&gt;The reason for choosing 10 MB is quite arbitary, I just wanted to buffer 2-3 secs of data. You are pretty much on the right track. &lt;/P&gt;
&lt;P&gt;However, I see a few artifacts in the video which I suspect is due to my buggy implementation of CSocketReader.&lt;/P&gt;
&lt;P&gt;Please let me know if you want to see my code and I can mail it to you.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2008 00:20:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/RE-umc-socket-reader-h/m-p/892775#M11734</guid>
      <dc:creator>pushkar_p</dc:creator>
      <dc:date>2008-08-18T00:20:07Z</dc:date>
    </item>
  </channel>
</rss>

