Commit 741b5fd4 authored by Thad Ward's avatar Thad Ward Committed by Benoit Fouet

Set an opaque alpha value when decoding rgba ffv1.

Patch by Thad Ward coderjoe69¤yahoo°com

Originally committed as revision 23757 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 30cdfb49
......@@ -957,7 +957,7 @@ static void decode_rgb_frame(FFV1Context *s, uint32_t *src, int w, int h, int st
b += g;
r += g;
src[x + stride*y]= b + (g<<8) + (r<<16);
src[x + stride*y]= b + (g<<8) + (r<<16) + (0xFF<<24);
}
}
}
......
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