HRESULT GetDVRAvailableFragments(ILMDVRSource* pDVR, double* pdFragmentStartPos, double* pdFragmentEndPos){double dStartPos;double dEndPos;double dTotal;// find available range of bytesHRESULT hr = pDVR->GetAvailabilityInfo(&dStartPos, &dEndPos, &dTotal);if (FAILED(hr))return hr;// align the offset with transport fragment boundariesreturn pDVR->GetFragmentAlignment(dStartPos, dEndPos, pdFragmentStartPos, pdFragmentEndPos);}HRESULT SaveDVRFragments(ILMDVRSource* pDVR, LPCWSTR pszFile){HRESULT hr;double dStartPos;double dEndPos;// Get fragment aligned boundaries for all available datahr = GetDVRAvailableFragments(pDVR, &dStartPos, &dEndPos);if (FAILED(hr))return hr;// Save the fragments to a filereturn pDVR->CopyBufferToFile(CComBSTR(pszFile), dStartPos, dEndPos);}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
