void GetVideoCaptureSubTypes(IltmmCapture *pCapture)
{
IltmmCaptureSubTypes* pVideoCapSubTypes;
// try to get the video capture subtypes object
HRESULT hr = pCapture->get_VideoCaptureSubTypes(&pVideoCapSubTypes);
if (SUCCEEDED(hr))
{
long lSelected;
hr = pVideoCapSubTypes->get_Selection(&lSelected);
if (SUCCEEDED(hr))
{
IltmmCaptureSubType *pVideoCapSubType;
// get the currently selected subtype
hr = pVideoCapSubTypes->Item(lSelected, &pVideoCapSubType);
if (SUCCEEDED(hr))
{
BSTR bstr;
// do something with the sub type
pVideoCapSubType->get_FriendlyName(&bstr);
// do something with the name, like display in a text box
// free the string
SysFreeString(bstr);
// release the capture subtype object
pVideoCapSubType->Release();
}
}
// release the capture subtypes object
pVideoCapSubTypes->Release();
}
pVideoCapSubTypes->Release();
}
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