Fixed MSMF file capture error while opening the file containing unsupported video stream format

This commit is contained in:
Artur Wieczorek 2014-04-26 10:12:37 +02:00
parent 562ff9d111
commit 5bf1a4c08c

View File

@ -3847,18 +3847,25 @@ bool CvCaptureFile_MSMF::open(const char* filename)
hr = enumerateCaptureFormats(videoFileSource); hr = enumerateCaptureFormats(videoFileSource);
} }
if( captureFormats.empty() )
{
isOpened = false;
}
else
{
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
hr = ImageGrabberThread::CreateInstance(&grabberThread, videoFileSource, (unsigned int)-2, true); hr = ImageGrabberThread::CreateInstance(&grabberThread, videoFileSource, (unsigned int)-2, true);
} }
if (SUCCEEDED(hr)) isOpened = SUCCEEDED(hr);
}
if (isOpened)
{ {
grabberThread->start(); grabberThread->start();
} }
isOpened = SUCCEEDED(hr);
return isOpened; return isOpened;
} }
@ -3990,6 +3997,8 @@ HRESULT CvCaptureFile_MSMF::enumerateCaptureFormats(IMFMediaSource *pSource)
goto done; goto done;
} }
MediaType MT = FormatReader::Read(pType.Get()); MediaType MT = FormatReader::Read(pType.Get());
// We can capture only RGB video.
if( MT.MF_MT_SUBTYPE == MFVideoFormat_RGB24 )
captureFormats.push_back(MT); captureFormats.push_back(MT);
} }