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
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/
> >> 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
>
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
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