Set alpha of palettes to 0xff.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e91946ed23
commit
dbfdb288c1
4 changed files with 12 additions and 11 deletions
|
|
@ -245,7 +245,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
|
|||
buf = buf0 + 14 + ihsize; //palette location
|
||||
if((hsize-ihsize-14) < (colors << 2)){ // OS/2 bitmap, 3 bytes per palette entry
|
||||
for(i = 0; i < colors; i++)
|
||||
((uint32_t*)p->data[1])[i] = bytestream_get_le24(&buf);
|
||||
((uint32_t*)p->data[1])[i] = (0xff<<24) | bytestream_get_le24(&buf);
|
||||
}else{
|
||||
for(i = 0; i < colors; i++)
|
||||
((uint32_t*)p->data[1])[i] = bytestream_get_le32(&buf);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue