Commit a938cbeb authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Accept all standard DIB compressions in the mciavi driver.

parent 7412125e
......@@ -411,9 +411,12 @@ BOOL MCIAVI_OpenVideo(WINE_MCIAVI* wma)
TRACE("fcc %4.4s\n", (LPSTR)&fcc);
/* check uncompressed AVI */
/* check for builtin DIB compressions */
if ((fcc == mmioFOURCC('D','I','B',' ')) ||
(fcc == mmioFOURCC('R','L','E',' '))) {
(fcc == mmioFOURCC('R','L','E',' ')) ||
(fcc == BI_RGB) || (fcc == BI_RLE8) ||
(fcc == BI_RLE4) || (fcc == BI_BITFIELDS))
{
wma->hic = 0;
MCIAVI_DrawFrame(wma);
return TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment