Thanks for the report.
This (tiny) memory leak can be fixed by changing line 190 of
"liveMedia/RTPInterface.cpp" from
SocketDescriptor* socketDescriptor = lookupSocketDescriptor(env,
socketNum);
to
SocketDescriptor* socketDescriptor = lookupSocketDescriptor(env,
socketNum, False
Hi Ross,
Using your last release 2013.07.31, I faced a memory leak.
Debugging show that
RTSPClient::~RTSPClient
-> RTPInterface::clearServerRequestAlternativeHandler with
socketNum = -1
-> RTPInterface::setServerRequestAlternativeHandler
-> lookupServerDescrip
> The problem is that my SPS/PPS NALs are never used in SDP. After some
> debugging i reached the place where Session Description is created in
> H264VideoRTPSink:
>
> if (sps == NULL || pps == NULL) {
>// We need to get SPS and PPS from our framer source:
>if (fOurFragmenter == NULL) retu