Re: [Live-devel] How can I bind live555MedisaServer to an IP?

2011-11-19 Thread Ross Finlayson
> I would like to use live555 streaming multiple streams from one box, but each > socket must be listen to another IP. > Can you tell me is there a solution yet, or how can I solve that in the > easiest way? Yes, the easiest way to solve this is to make sure that multicast routing is enabled on

Re: [Live-devel] H.264 live video streaming

2011-11-19 Thread Ross Finlayson
> So, I've started to use the H264VideoStreamer class directly as you suggest > and I get much further. However at a certain point after a number of > successful sendRTPOverTCP calls, subsequent calls seem to fail and then > never recover. Your problem here is basically that you are trying to 'cra

Re: [Live-devel] Access violation crash in rtspclient

2011-11-19 Thread Jeff Shanab
From: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Ross Finlayson Sent: Saturday, November 19, 2011 2:51 PM To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] Access violation crash in rtspclient 2 adjustments to the library al

Re: [Live-devel] Access violation crash in rtspclient

2011-11-19 Thread Ross Finlayson
> 2 adjustments to the library allow me to tiptoe thru the call stack avoiding > accessing destroyed or already deleted members and unwind this stack. I'll be doing something similar to your first fix (but it most certainly will not be using a "goto" :-) > This gest me almost all the way out o

[Live-devel] How can I bind live555MedisaServer to an IP?

2011-11-19 Thread Molnar Gabor
Hello, I would like to use live555 streaming multiple streams from one box, but each socket must be listen to another IP. Can you tell me is there a solution yet, or how can I solve that in the easiest way? Best regards, Gabor Molnar from Hungary _

[Live-devel] Windows builds

2011-11-19 Thread Jeff Shanab
I know there has in the past been requests for windows builds but windows changes their and breaks their own build system so much, it is not worth it. However, I use the FireBreath plugin framework (http://www.firebreath.org/display/documentation/FireBreath+Home) and I really like the way CMAK

Re: [Live-devel] Access violation crash in rtspclient

2011-11-19 Thread Jeff Shanab
2 adjustments to the library allow me to tiptoe thru the call stack avoiding accessing destroyed or already deleted members and unwind this stack. I do not suggest these at all, they are a hack, but it confirms for me what is happening with the call stack. Add an exit label with a dummy command

Re: [Live-devel] Access violation crash in rtspclient

2011-11-19 Thread Ross Finlayson
OK, I see what you're saying now. Yes, you're correct: There is a problem if the RTCP "BYE" handler - called from within "RTCPInstance::incomingReportHandler1()" - happens to delete the "RTCPInstance" object, because we'll continue to execute the rest of the "incomingReportHandler1()" member

Re: [Live-devel] Mpeg surround sound

2011-11-19 Thread Ross Finlayson
> We are interested in RTP encapsulation of AAC 5.1 audio in the context of a > European Union funded project. Current version of LIVE 555 does not support > that. Yes we do. We support both the receiving (using "MPEG4GenericRTPSource") and sending (using "MPEG4GenericRTPSink") of AAC audio RT

Re: [Live-devel] Access violation crash in rtspclient

2011-11-19 Thread Jeff Shanab
I know that 99% of the time it is 'adjustments to' and 'missuse' that are the problems people have with using live555, but unless they changed the way CPU's work, we do have an issue. (This issue is avoided in openRTSP by just exiting the process before the access violation could hit.) It boils

[Live-devel] Mpeg surround sound

2011-11-19 Thread H.Oztoprak
Hi Ross, We are interested in RTP encapsulation of AAC 5.1 audio in the context of a European Union funded project. Current version of LIVE 555 does not support that. Is there a way that we can get help from you about this or if not what is the best point to start? Regards, Huseyin __

Re: [Live-devel] H.264 live video streaming

2011-11-19 Thread James Norris
If your data stream arrives as a continuous buffer (its not easy to tell where NALs start/end) use H264VideoStreamFramer, if your NALs are separated & delivered one by one, use the H264VideoStreamDiscreteFramer. You can cull the startcodes from the NALs easily enough. James On Fri, Nov 18, 201

Re: [Live-devel] Access violation crash in rtspclient

2011-11-19 Thread Ross Finlayson
> The bye handler calls code resulting in Medium::Close. This ends up calling > the destructor on the RTCP class and deletes the fKnowMembers. Yes. > The OnReceive is then attempted to be called No, that shouldn't be happening, because the "RTCPInstance" destructor called "stopNetworkReading(