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 Sierra VMD palette opaque.
tags/n0.9
Carl Eugen Hoyos
14 years ago
parent
e9a2ffa117
commit
90f75f9804
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/vmdav.c
+ 1
- 1
libavcodec/vmdav.c
View File
@@ -264,7 +264,7 @@ static void vmd_decode(VmdVideoContext *s)
r = *p++ * 4;
g = *p++ * 4;
b = *p++ * 4;
palette32[i] =
(r << 16) | (g << 8) | (b)
;
palette32[i] =
0xFF << 24 | r << 16 | g << 8 | b
;
}
}
if (p < p_end) {
Write
Preview
Loading…
Cancel
Save