[Live-devel] RTSP Server Crash when switching from multicast to unicast

2015-04-27 Thread david . myers
In order to switch my server implementation from multicast to unicast, I use the following function in my live555 wrapper code to close the current session before re-opening the new session. void CRTSPWrapper::RemoveSMS() { streamStream_t *stream = m_StreamArray[m_StreamIndex]; if (stream->i

Re: [Live-devel] RTSP Server Crash when switching from multicast to unicast

2015-04-30 Thread david . myers
Thanks for the advice, I haven't fixed the crash, but I've stopped it from happening, I think. In case anyone else hits this issue, I moved the call to deleteServerMediaSession() to before the calls to close down the streams, so my server shutdown code now looks like this:- void CRTSPWrapper

Re: [Live-devel] RTSP Server Crash when switching from multicast to unicast

2015-05-01 Thread david . myers
I've inherited most of this code and I'm supporting it but I'm not really an expert at it. >I'd still like to know exactly where/how/why the crash was happening, to make >sure that it's not a problem with our code. (As always, I assume that you're >using the latest version of the code.) Yes