[Live-devel] How to make session count restriction?

2009-09-20 Thread Свириденко С.А.
What i need to modify in "RTSPServer" to make session count restriction? ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

Re: [Live-devel] [PATCH] Use estimated bitrate to set SDP bandwidth line and socket send buffer size

2009-09-20 Thread Ross Finlayson
Ben, Thanks for the contribution. I have included this (and the other three patches you sent) in the latest release (2009.09.21) of the "LIVE555 Streaming Media" code. (I also updated "PassiveServerMediaSubsession" so that the same thing is done for multicast RTSP sessions.) (BTW, I haven

Re: [Live-devel] strstream.h

2009-09-20 Thread Ross Finlayson
FYI, I have now installed a new version (2009.09.21) of the code that uses exclusively. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/li

[Live-devel] [PATCH] Use estimated bitrate to set SDP bandwidth line and socket send buffer size

2009-09-20 Thread Ben Hutchings
This is required to avoid packet loss for high-bandwidth codecs such as DV video. Ben. diff --git a/liveMedia/OnDemandServerMediaSubsession.cpp b/liveMedia/OnDemandServerMediaSubsession.cpp index 235e60a..786c6a1 100644 --- a/liveMedia/OnDemandServerMediaSubsession.cpp +++ b/liveMedia/OnDemandSe

[Live-devel] [PATCH] Parse SDP bandwidth line and use to set the receive socket buffer size

2009-09-20 Thread Ben Hutchings
This is required to avoid packet loss for high-bandwidth codecs such as DV video. Ben. diff --git a/liveMedia/MediaSession.cpp b/liveMedia/MediaSession.cpp index 2768157..1a09f2c 100644 --- a/liveMedia/MediaSession.cpp +++ b/liveMedia/MediaSession.cpp @@ -211,6 +211,7 @@ Boolean MediaSession::ini

[Live-devel] [PATCH] Build real static libraries under Linux

2009-09-20 Thread Ben Hutchings
This patch changes the Linux configs to build static libraries (archives with symbol tables) using ar rather than building combined object files. A real static library allows the final link to omit objects that are not referenced, and can be referenced multiple times on the command line without lea

[Live-devel] [PATCH] Do not shortcut recursive make

2009-09-20 Thread Ben Hutchings
Currently, after a successful (or even partially successful) build, a subsequent 'make' at the top level will do nothing even if source files have changed. This does not seem to be useful behaviour. Therefore, this patch changes the top-level Makefile to run make in each subdirectory unconditiona