Module: wine Branch: master Commit: 79c37ac88b3b6618514fce05e4411291b480698e URL: http://source.winehq.org/git/wine.git/?a=commit;h=79c37ac88b3b6618514fce05e4...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Tue Aug 11 00:29:28 2015 +0800
msvfw32: Make it easier to recognize missing media codecs.
---
dlls/msvfw32/msvideo_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msvfw32/msvideo_main.c b/dlls/msvfw32/msvideo_main.c index b6b7507..db56fdf 100644 --- a/dlls/msvfw32/msvideo_main.c +++ b/dlls/msvfw32/msvideo_main.c @@ -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; }