msvfw32: Make it easier to recognize missing media codecs.

This commit is contained in:
Bruno Jesus 2015-08-11 00:29:28 +08:00 committed by Alexandre Julliard
parent 9e09982847
commit 79c37ac88b
1 changed files with 2 additions and 2 deletions

View File

@ -649,8 +649,8 @@ HIC VFWAPI ICLocate(DWORD fccType, DWORD fccHandler, LPBITMAPINFOHEADER lpbiIn,
if (fccType == streamtypeVIDEO)
return ICLocate(ICTYPE_VIDEO, fccHandler, lpbiIn, lpbiOut, wMode);
WARN("(%s,%s,%p,%p,0x%04x) not found!\n",
wine_dbgstr_fcc(fccType), wine_dbgstr_fcc(fccHandler), lpbiIn, lpbiOut, wMode);
ERR("Required media codec '%s %s' not found!\n",
wine_dbgstr_fcc(fccType), wine_dbgstr_fcc(fccHandler));
return 0;
}