This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Set QuickDraw palette opaque.
tags/n0.9
Carl Eugen Hoyos
14 years ago
parent
3bf54ab565
commit
9f9a1f424e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
Write
Preview
Loading…
Cancel
Save