[Live-devel] How to bypass streamlimit causes by EventTriggerIDs

2011-12-05 Thread Kristen Eisenberg
Hello, I am using live555 to stream several network cameras. For that I generate one RTSP-Server and for every camera a subsession on this server with a new URL. To signal the TaskScheduler, that there is a new frame for a stream, I use a EventTriggerID. Every stream has his own EventTriggerI

Re: [Live-devel] memory ownership in UserAuthenticationDatabase liveMedia/RTSPServer.cpp

2011-12-05 Thread Ross Finlayson
Yes, you've found a memory leak. The allocated 'password' strings should be deleted when the "UserAuthenticationDatabase" is deleted - but currently they aren't. This will be fixed in the next release of the software. Ross Finlayson Live Networks, Inc. http://www.live555.com/

Re: [Live-devel] StreamParser internal error (149999+ 4 >

2011-12-05 Thread Ross Finlayson
> >> FYI, I've now installed a new version (2011.12.02) of the "LIVE555 > >> Streaming Media" code that avoids this problem (for H.264 parsing). You > >> should no longer need to modify the "BANK_SIZE" constant. > > I guess I should download the patch and look at the new code but could you >

Re: [Live-devel] StreamParser internal error (149999+ 4 >

2011-12-05 Thread David J Myers
Hi Ross, >> FYI, I've now installed a new version (2011.12.02) of the "LIVE555 Streaming Media" code that avoids this problem (for H.264 parsing). You should no longer need to modify the "BANK_SIZE" constant. I guess I should download the patch and look at the new code but could you just e

[Live-devel] memory ownership in UserAuthenticationDatabase liveMedia/RTSPServer.cpp

2011-12-05 Thread PROMONET Michel
Hi, In UserAuthenticationDatabase::addUserRecord, the value inserted in the map is allocated through strDup(password). As the class allocate the memory, I think the class own this memory, then the destructor should free it. Is it possible to insert in the destructor something li