Re: [Live-devel] how to get older source archives

2009-10-15 Thread Ross Finlayson
Sorry, but older versions of the code are not supported, and are not made available. Developers are expected to have their code working with the latest version of the code. (Fortunately, major API changes happen rarely.) However, the 'changelog' at

Re: [Live-devel] Configuration for AVR32 targets.

2009-10-15 Thread Ross Finlayson
Thanks. I'll add this (as "config.avr32-linux") to the next release of the software. -- 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-

[Live-devel] how to get older source archives

2009-10-15 Thread Martin Stellmacher
Hello, I need the source code of "LIVE555 Streaming Media" of the revisions 2008.10.07, 2009.02.13 and 2009.04.20 for comparison purposes. Unfortunately only the latest version is available at your website http://www.live555.com/liveMedia/public/. Is there any possibilty to get the historic v

[Live-devel] Configuration for AVR32 targets.

2009-10-15 Thread Jorge Muñoz Castañer
Hi all, This configuration file works for me in order to crosscompile Live55 for AVR32 targets: CROSS_COMPILE=avr32-linux-uclibc- COMPILE_OPTS =-Os $(INCLUDES) -msoft-float -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DSOCKLEN_T=socklen_t -DNO_SSTREAM=1

Re: [Live-devel] openRTSP (connect failed timeout)

2009-10-15 Thread Alex V. Obshtat
Thanks a lot. I've changed source with next: if (username != NULL && password != NULL) { result = rtspClient->describeWithPassword(url, username, password, False, 10); } else { result = rtspClient->describeURL(url, NULL, False, 10); } And now I have 1:24 before exiting instead of 2

Re: [Live-devel] Streaming support over TCP

2009-10-15 Thread Ross Finlayson
I am trying to receive the stream over TCP using openRTSP Client for that i have enabled streamUsingTCP and used "-t" option. I am able to receive the Play response but i am unable to get/store the stream data in video-MP2T-1 file. That's strange. This appears to be a problem with your

Re: [Live-devel] openRTSP (connect failed timeout)

2009-10-15 Thread Ross Finlayson
But I have one question - is it possible to decrease timeout before exiting if host specified in url is unreachable ? Yes, you can add a "timeout" parameter (in seconds) to the call to "RTSPClient::describeURL()" and/or "RTSPClient::describeWithPassword()". There's no option in the "openRT