Re: [Live-devel] Stop/restart RTP source

2009-11-03 Thread Dong Liu
Ross Finlayson wrote: Am I doing the right thing when doing stop and start the RTP stream? I think so. But what are you using for your server? I *think* our RTP/RTCP server implementation will handle this correctly (because RTCP packets should continue to get sent even after the stream is s

[Live-devel] Stop/restart RTP source

2009-11-02 Thread Dong Liu
Hi, In my project I need to stop and restart receving RTP stream. I'm using the following code to do these, start and restart is the same, mySink->startPlaying(theRtpSource, afterPlayFun, NULL); watchVariable=0; pScheduler->doEventLoop(&watchVariable); For stop mySink->stopPlaying(); watchV

Re: [Live-devel] multiple instances of live555 library

2009-08-01 Thread Dong Liu
Ross, I found my problem was caused by other element in my system. But after I gave it more thought, I think the situation I had actually was not using multiple instances of live555. The module I developed is a shared library which is loaded by a host program which I have no control. Each mo

[Live-devel] multiple instances of live555 library

2009-07-31 Thread Dong Liu
Hi, I'm developing an H264 RTP source filter for the Microsoft Directshow platform. The directshow filter is basically a shared library which is loaded dynamically. I created BasicTaskScheduler, BasicUsageEnvironment and MediaSession when the filter is loaded. If there is only one instance of

Re: [Live-devel] get the rtp discontinuity info

2009-07-24 Thread Dong Liu
Ross Finlayson wrote: I'm writing a Microsoft directshow source filter based on live media's rtp. I'm interested to get the discontinuity, such as packet lost, packet out of order etc from the rtp layer. No, you don't need this information. Our RTP reception implementation takes care of this

Re: [Live-devel] H264VideoRTPSource question

2009-07-24 Thread Dong Liu
Jeremy, Thanks. It works on some h264 sources but not on some other sources. I came cross this message on the vlc list, http://mailman.videolan.org/pipermail/vlc-devel/2005-July/018249.html and a reply http://mailman.videolan.org/pipermail/vlc-devel/2005-July/018262.html It mentioned you ne

[Live-devel] H264VideoRTPSource question

2009-07-23 Thread Dong Liu
Hi, I'm trying to write a Microsoft DirectShow source filter based on live media's RTP implementation. For mpeg4 it works perfectly. But for H264, the video is always jumpy. Sometimes with a lot artifacts. I tried the source filter with Cyperlink's H264/avc decoder, mpc-hc's MPCVideo decoder and

[Live-devel] get the rtp discontinuity info

2009-07-23 Thread Dong Liu
Hi, I'm writing a Microsoft directshow source filter based on live media's rtp. I'm interested to get the discontinuity, such as packet lost, packet out of order etc from the rtp layer. Is there API for this? Thanks! Dong ___ live-devel mailing list li