// After the capture properties dialog has been invoked,
void GetNearestCaptureInputSelection(IltmmCapture *pCapture)
{
IltmmCaptureInputs *pInputs;
long index, count;
pCapture->get_VideoInputs(&pInputs);
pInputs->get_Count(&count);
if (count > 0)
{
pInputs->get_Selection(&index);
if (index == -1)
{
if (MessageBox(NULL, TEXT("The video input has been altered without changing other related inputs. Would you like the other related inputs changed automatically?"),
TEXT("Capture Inputs"), MB_YESNO) == IDYES)
{
// get the closest selection and use it;
// this will fix the problem of unmatched audio/video inputs.
pInputs->get_NearestSelection(&index);
pInputs->put_Selection(index);
}
}
}
pInputs->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