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

2009-07-24 Thread Ross Finlayson
No, you don't need this information. Our RTP reception implementation takes care of this automatically, so that your receiver is presented with whole, properly-ordered frames. Dumb question: what if a frame is lost on the wire? For examp

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

2009-07-24 Thread Jeremy Noring
On Fri, Jul 24, 2009 at 3:09 AM, 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

Re: [Live-devel] MPEG2 to TS Conversion Problems

2009-07-24 Thread Ross Finlayson
I am having issues with the testMPEG1or2ProgramToTransportStream file. Here is what I have done. 1. At first, when I ran the program I would get the following error: Beginning to read... BasicTaskScheduler::SingleStep(): select() fails: No error This is your problem; any attempt to 'w

Re: [Live-devel] bug: testProgs/playCommon.cpp: task is not properly unscheduled in continuous play

2009-07-24 Thread Ross Finlayson
Thanks. This will get fixed in a future release. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

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

[Live-devel] bug: testProgs/playCommon.cpp: task is not properly unscheduled in continuous play

2009-07-24 Thread Anon Sricharoenchai
When playing continuously, it should unschedule the following tasks, before continue playing. testProgs/playCommon.cpp: void sessionAfterPlaying(void* /*clientData*/) { if (!playContinuously) { shutdown(0); } else { +// unschedule these task, since it will be rescheduled by +/

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

2009-07-24 Thread Ross Finlayson
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 automatically, so that

Re: [Live-devel] Closing the media does not free allocated memory?

2009-07-24 Thread Ross Finlayson
So, I can't free memory allocated by RTSPClient::createNew? Yes you can. Once again: To reclaim such an object (and free its memory), call "Medium::close(obj)" (If - for whatever reason - you think that this is not freeing memory, then you're probably wrong :-) (Also, please use a reasona

[Live-devel] Trying to play mp3 file or live streaming to wmplayer client from default MediaServer code

2009-07-24 Thread Santosh Karankoti
Hi, I have downloaded and compiled the mak files for all the livemedia555 streaming open source code I am trying to play mp3 file by requesting the default Mediaserver code using the Windows Media Player v10. In this scenario, the WMPlayer is sending the Describe request to the Mediaserver

Re: [Live-devel] testMP3Streamer.cpp and testMP3Receive.cpp

2009-07-24 Thread Woods
Can you use Sniffer software to CONFIRM you have received streaming packets on destination machine? 2009/7/20 DannyLuo > Hi, >I am still confused by the using of testMP3Streamer.exe and > testMP3Receive.exe. >when I test the testMP3Streamer.exe and testMP3Receive.exe on two > computers

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] MPEG2 to TS Conversion Problems

2009-07-24 Thread Andrew Umlauf
I am having issues with the testMPEG1or2ProgramToTransportStream file.   Here is what I have done.   1. At first, when I ran the program I would get the following error:   Beginning to read... BasicTaskScheduler::SingleStep(): select() fails: No error   I found that this error comes from l

Re: [Live-devel] Closing the media does not free allocated memory?

2009-07-24 Thread Dario
So, I can't free memory allocated by RTSPClient::createNew?I have a wrapper class around RTSPClient which I use in mannner ofCRTSPClient *client = new CRTSPClient(...).And I should not use "delete client;" but internally close open Media and then just reuse "*client" without deleting it?I'm just