// Selecting the first stable video compressor:
void GetCompressorReliability(IltmmCapture *pCapture)
{
IltmmCompressors *pVideoCompressors;
IltmmCompressor *pCompressor;
long i, lCount, lReliability;
// get the video compressors object
pCapture->get_VideoCompressors(&pVideoCompressors);
// get the count of compressors
pVideoCompressors->get_Count(&lCount);
// enumerate the compressors collection
for (i=0; i<lCount; i++)
{
// get the compressor
pVideoCompressors->Item(i, &pCompressor);
// get it's reliability
pCompressor->get_Reliability(&lReliability);
// release the compressor object
pCompressor->Release();
// if stable, select it and break
if (lReliability == ltmmCompressor_Reliability_Stable)
{
pVideoCompressors->put_Selection(i);
break;
}
}
}
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