Re: [Live-devel] crash when close rtspserver

2015-05-11 Thread Ross Finlayson
Thanks for the report. I’ve just released a new version (2015.05.12) of the software that fixes this. Ross Finlayson Live Networks, Inc. http://www.live555.com/ ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/

[Live-devel] crash when close rtspserver

2015-05-11 Thread ChaseopIm
Hi. I found crash when RTSPServer is closed. I found that RTSPServer::~RTSPServer added some code about closing fTCPStreamingDatabase in last version. The code occurred problem, because deleted fTCPStreamingDatabase is used when closing client connection objects. (RTSPServer::RTSPClientCo

Re: [Live-devel] Library modifications

2015-05-11 Thread Ross Finlayson
I realize that most of your message seemed to be referring to ‘subclassing’ - which is the preferred way to change or extend the functionality of the code. However, because you used the term “modifications” - which usually means changing the code in place - I wanted to first make it clear that

Re: [Live-devel] Library modifications

2015-05-11 Thread Ross Finlayson
If you haven’t already done so, please read http://live555.com/liveMedia/faq.html#modifying-and-extending The “LIVE555 Streaming Media” code is intended to be extended via C++ subclassing - not by modifying the supplied code

[Live-devel] Library modifications

2015-05-11 Thread Frank van Eijkelenburg
Hi, The RTSPServerWithREGISTERProxying class uses the ProxyServerMediaSession class. Suppose I want to modify the ProxyServerMediaSession class. Do I really have to derive also the RTSPServer class (and instantiate there MyProxyServerMediaSession object)? Or is there a simpler way to do this?