Module: wine Branch: master Commit: f31e30d1be997b5716f318166a2a1d18b38fddfa URL: http://source.winehq.org/git/wine.git/?a=commit;h=f31e30d1be997b5716f318166a...
Author: André Hentschel nerv@dawncrow.de Date: Thu May 20 19:55:06 2010 +0200
msvidc32: Be less picky with formats.
---
dlls/msvidc32/msvideo1.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msvidc32/msvideo1.c b/dlls/msvidc32/msvideo1.c index 71ed2d7..d01f07a 100644 --- a/dlls/msvidc32/msvideo1.c +++ b/dlls/msvidc32/msvideo1.c @@ -375,8 +375,8 @@ static LRESULT CRAM_DecompressBegin( Msvideo1Context *info, LPBITMAPINFO in, LPB info->mode_8bit = 0; else { - ERR("Bad output format\n"); - return ICERR_BADPARAM; + info->mode_8bit = 0; + FIXME("Unsupported output format %i\n", in->bmiHeader.biBitCount); }
return ICERR_OK;