Re: [Live-devel] help! When I use openRTSP to visitor remote RTSP Server

2012-09-04 Thread Ross Finlayson
> I use the test program openRTSP to visitor remote RTSP server, after > openRTSP send command "PLAY", the RTSP server return many RTP packet, but > openRTSP process can't process those packet, and openRTSP's cpu usage 50%. > please help me! You realize, I hope, that "openRTSP" doesn't decode

[Live-devel] help! When I use openRTSP to visitor remote RTSP Server

2012-09-04 Thread kingking kuo
I use the test program openRTSP to visitor remote RTSP server, after openRTSP send command "PLAY", the RTSP server return many RTP packet, but openRTSP process can't process those packet, and openRTSP's cpu usage 50%. please help me! command Line: openRTSP.exe -t rtsp://svn.119bk.com:554/0/88

Re: [Live-devel] How is the best way to realize it ?

2012-09-04 Thread Ross Finlayson
> Choose a "preferredFrameSize" that's large enough to fit within an outgoing > RTP packet. I suggest 1500 bytes (i.e., 250 samples), with > "playTimePerFrame" of 5208 microseconds (assuming a sampling rate of 48 kHz). I made a mistake there. 1500 bytes is a bit too large to fit within a packe

Re: [Live-devel] Possible bug

2012-09-04 Thread Ross Finlayson
> In liveMedia/RTSPServer.cpp, on line 1252, there's a multi clause if > statement that, as formatted, looks like you want it to be evaluated in a > way that precedence rules say you will get a surprise. > > The line looks like this: > if (streamingMode == RTP_TCP && rtpChannelId == 0xFF || >s

Re: [Live-devel] Possible bug report, and a question

2012-09-04 Thread Ross Finlayson
> In liveMedia/MP3Internals.cpp, in the member function > MP3FrameParams::getSideInfo(MP3SideInfo&), there's a var declared named > i_stereo. > > It gets initialized, but never used. Yes, that variable doesn't need to be there. Thanks. Ross Finlayson Live Networks, Inc. http://www.live555.com/

Re: [Live-devel] How is the best way to realize it ?

2012-09-04 Thread Ross Finlayson
> I try very simply to modify the name of 'test.wav' by '/tmp/my_fifo'. But it > doesn't work. No, you can't do that, because the "WAVAudioFileSource" class is intended for reading from a WAV file (with a WAV header at the front). > So, what is the most efficient way to do it. I just want the

[Live-devel] Possible bug

2012-09-04 Thread owen
In liveMedia/RTSPServer.cpp, on line 1252, there's a multi clause if statement that, as formatted, looks like you want it to be evaluated in a way that precedence rules say you will get a surprise. The line looks like this: if (streamingMode == RTP_TCP && rtpChannelId == 0xFF || streamingMode

[Live-devel] Possible bug report, and a question

2012-09-04 Thread owen
I've found a possible 'bug' that might just be an extra variable decl, but might be a cut'n'paste bug. In liveMedia/MP3Internals.cpp, in the member function MP3FrameParams::getSideInfo(MP3SideInfo&), there's a var declared named i_stereo. It gets initialized, but never used. It looks like it mig

[Live-devel] How is the best way to realize it ?

2012-09-04 Thread Raph
As someone knows, I asked to Ross Finlayson to integrate one more kind of stream in the sources. the specification of this stream is to be able to play aver RTSP an 48khz 24bits wav audio files. And now this works very well. But I would like to do something else with this kind of stream,