msvfw32: When no fccHandler is specified return the first valid codec.
Signed-off-by: Bruno Jesus <00cpxxx@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
75286b0ac7
commit
a90ed505a7
|
@ -436,6 +436,27 @@ HIC VFWAPI ICOpen(DWORD fccType, DWORD fccHandler, UINT wMode)
|
|||
|
||||
TRACE("(%s,%s,0x%08x)\n", wine_dbgstr_fcc(fccType), wine_dbgstr_fcc(fccHandler), wMode);
|
||||
|
||||
if (!fccHandler) /* No specific handler, return the first valid for wMode */
|
||||
{
|
||||
HIC local;
|
||||
ICINFO info;
|
||||
DWORD loop = 0;
|
||||
info.dwSize = sizeof(info);
|
||||
while(ICInfo(fccType, loop++, &info))
|
||||
{
|
||||
/* Ensure fccHandler is not 0x0 because we will recurse on ICOpen */
|
||||
if(!info.fccHandler)
|
||||
continue;
|
||||
local = ICOpen(fccType, info.fccHandler, wMode);
|
||||
if (local != 0)
|
||||
{
|
||||
TRACE("Returning %s as defult handler for %s\n",
|
||||
wine_dbgstr_fcc(info.fccHandler), wine_dbgstr_fcc(fccType));
|
||||
return local;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Check if there is a registered driver that matches */
|
||||
driver = reg_driver_list;
|
||||
while(driver)
|
||||
|
|
|
@ -31,7 +31,6 @@ static void test_OpenCase(void)
|
|||
ICINFO info;
|
||||
/* Check if default handler works */
|
||||
h = ICOpen(mmioFOURCC('v','i','d','c'),0,ICMODE_DECOMPRESS);
|
||||
todo_wine
|
||||
ok(0!=h,"ICOpen(vidc.0) failed\n");
|
||||
if (h) {
|
||||
info.dwSize = sizeof(info);
|
||||
|
@ -41,7 +40,6 @@ todo_wine
|
|||
ok(ICClose(h)==ICERR_OK,"ICClose failed\n");
|
||||
}
|
||||
h = ICOpen(mmioFOURCC('v','i','d','c'),0,ICMODE_COMPRESS);
|
||||
todo_wine
|
||||
ok(0!=h || broken(h == 0),"ICOpen(vidc.0) failed\n"); /* Not present in Win8 */
|
||||
if (h) {
|
||||
info.dwSize = sizeof(info);
|
||||
|
|
Loading…
Reference in New Issue