HRESULT DeleteLiveStream(IltmsServer* server, LPCTSTR path)
{
HRESULT hr;
long streamcount;
long streamindex;
CComPtr<IltmsLiveStreams> streams;
hr = server->GetLiveStreams(&streams);
if(FAILED(hr))
goto error;
if(!path)
{
// remove all the streams
hr = streams->Clear();
if(FAILED(hr))
goto error;
// save the new collection
hr = server->SetLiveStreams(streams);
if(FAILED(hr))
goto error;
}
else
{
// search for existing stream with same path
hr = streams->get_Count(&streamcount);
if(FAILED(hr))
goto error;
for(streamindex = 0; streamindex < streamcount; streamindex++)
{
CComPtr<IltmsLiveStream> stream;
CComBSTR v;
hr = streams->GetLiveStream(streamindex, &stream);
if(FAILED(hr))
goto error;
hr = stream->get_Path(&v);
if(FAILED(hr))
goto error;
if(CStringW(path).CompareNoCase(v) == 0)
{
// remove it
hr = streams->Remove(streamindex);
if(FAILED(hr))
goto error;
// save the new collection
hr = server->SetLiveStreams(streams);
if(FAILED(hr))
goto error;
break;
}
}
}
error:
return hr;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document