Commit c5e281d0 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

mciavi32: Detect Indeo video frames as valid frames.

parent ab4460a3
......@@ -190,8 +190,11 @@ static BOOL MCIAVI_AddFrame(WINE_MCIAVI* wma, LPMMCKINFO mmck,
*/
twocc = TWOCCFromFOURCC(mmck->ckid);
if (twocc == TWOCCFromFOURCC(wma->inbih->biCompression))
twocc = cktypeDIBcompressed;
twocc = cktypeDIBcompressed;
/* Also detect some chunks that seem to be used by Indeo videos where the chunk is named
* after the codec. */
else if (twocc == LOWORD(wma->ash_video.fccHandler))
twocc = cktypeDIBcompressed;
switch (twocc) {
case cktypeDIBbits:
case cktypeDIBcompressed:
......
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