qcap: If we have a single VfwCapture pin, its category should be PIN_CATEGORY_CAPTURE.

This commit is contained in:
Damjan Jovanovic 2015-05-31 20:13:35 +02:00 committed by Alexandre Julliard
parent 3f3e719551
commit 916dfb12b6
1 changed files with 2 additions and 2 deletions

View File

@ -642,8 +642,8 @@ KSP_Get( IKsPropertySet * iface, REFGUID guidPropSet, DWORD dwPropID,
if (cbPropData < sizeof(GUID))
return E_UNEXPECTED;
pGuid = pPropData;
*pGuid = PIN_CATEGORY_PREVIEW;
FIXME("() Not adding a pin with PIN_CATEGORY_CAPTURE\n");
*pGuid = PIN_CATEGORY_CAPTURE;
FIXME("() Not adding a pin with PIN_CATEGORY_PREVIEW\n");
return S_OK;
}