This example will select the last program of a multi-program file. There is no error checking to make the example easier to understand.
void SelectLastProgram(IltmmConvert *pConvert)
{
long SourceProgramCount = 0;
pConvert->get_SourceProgramCount(&SourceProgramCount);
if(SourceProgramCount > 1)
{
/* If there is more than one program, select the last program. If there is only one program, you are already on the last program. The program index is 0-based, so the allowed value to pass to IltmmConvert::put_CurrentSourceProgram is between 0 and SourceProgramCount - 1 */
pConvert->put_CurrentSourceProgram(SourceProgramCount - 1);
}
}
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