1. There are two memory leaks here.I write
my programs following the test***streamer and
free the memory as the following:
if (sessionState.sink != NULL) sessionState.sink->stopPlaying();
Medium::close(sessionState.rtcpInstance);
Medium::close(sessionState.sink);
M
Hi Ross,
I am new to live555 and trying to use this powerful lib to
stream live video.I received the video data from the network with my
server and then streamed it with live555.For the client,I useed VLC.
However,I got some problems here.
1. There are two memory leaks here.I writ