UDP video streaming

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

Dear Experts,

I am working on a project that receive video streams through UDP
and show the video or save to memory. However I am not familiar with
the WinCE application development. Is there any decoder I can use to
decode the video stream? The application will be used on a Windows
Mobile 2003 second edition pocket pc.

Thanks,
Kevin
 
It depends on the video stream format. You can also install your own codecs.
The basic PPC 2003 does not offer much in terms of codecs. The built-in WMV
decoder can work over UDP by using MMS and RTSP streams but it is not easy
to hook it into your own directshow graph. If you install your own DShow (or
DMO) codec there is still a challenge - it appears (I might be wrong) that
the PPC2003 does not come with the Asynchronous Source filter. This would be
a problem if you decide to go DirectShow way unless you are willing to write
your own. But then you might be better off by writing your own transport or
adapting one of the existing RTSP clients
 
Back
Top