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 ScummVM DXA palette opaque.
tags/n0.9
Carl Eugen Hoyos
14 years ago
parent
dcbd18c615
commit
1567243e8f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/dxa.c
+ 1
- 1
libavcodec/dxa.c
View File
@@ -209,7 +209,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
r = *buf++;
g = *buf++;
b = *buf++;
c->pal[i] =
(r << 16) | (g << 8)
| b;
c->pal[i] =
0xFF << 24 | r << 16 | g << 8
| b;
}
pc = 1;
buf_size -= 768+4;
Write
Preview
Loading…
Cancel
Save