1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Increase Sierra VMD palette dynamics.

This commit is contained in:
Carl Eugen Hoyos 2011-11-13 15:04:29 +01:00
parent a95906af57
commit 1fc573dd25

View File

@ -265,6 +265,7 @@ static void vmd_decode(VmdVideoContext *s)
g = *p++ * 4; g = *p++ * 4;
b = *p++ * 4; b = *p++ * 4;
palette32[i] = 0xFF << 24 | r << 16 | g << 8 | b; palette32[i] = 0xFF << 24 | r << 16 | g << 8 | b;
palette32[i] |= palette32[i] >> 6 & 0x30303;
} }
} }
if (p < p_end) { if (p < p_end) {