Browse Source

Set QuickDraw palette opaque.

tags/n0.9
Carl Eugen Hoyos 14 years ago
parent
commit
9f9a1f424e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/qdrw.c

+ 1
- 1
libavcodec/qdrw.c View File

@@ -90,7 +90,7 @@ static int decode_frame(AVCodecContext *avctx,
buf++;
b = *buf++;
buf++;
pal[idx] = (r << 16) | (g << 8) | b;
pal[idx] = 0xFF << 24 | r << 16 | g << 8 | b;
}
p->palette_has_changed = 1;



Loading…
Cancel
Save