Fixed selecting media type in DShow video capture.
Set correct value of sample size when calling IAMStreamConfig::SetFormat function. For non-RGB media type it can be set to zero value. (See http://msdn.microsoft.com/en-us/library/windows/desktop/dd373477%28v=vs.85%29.aspx)
This commit is contained in:
parent
ca5e73a9d0
commit
de0b46a765
@ -2416,7 +2416,15 @@ static bool setSizeAndSubtype(videoDevice * VD, int attemptWidth, int attemptHei
|
|||||||
VD->pAmMediaType->subtype = mediatype;
|
VD->pAmMediaType->subtype = mediatype;
|
||||||
|
|
||||||
//buffer size
|
//buffer size
|
||||||
|
if (mediatype == MEDIASUBTYPE_RGB24)
|
||||||
|
{
|
||||||
VD->pAmMediaType->lSampleSize = attemptWidth*attemptHeight*3;
|
VD->pAmMediaType->lSampleSize = attemptWidth*attemptHeight*3;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// For compressed data, the value can be zero.
|
||||||
|
VD->pAmMediaType->lSampleSize = 0;
|
||||||
|
}
|
||||||
|
|
||||||
//set fps if requested
|
//set fps if requested
|
||||||
if( VD->requestedFrameTime != -1){
|
if( VD->requestedFrameTime != -1){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user