Browse Source

Increase Sierra VMD palette dynamics.

tags/n0.9
Carl Eugen Hoyos 13 years ago
parent
commit
1fc573dd25
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavcodec/vmdav.c

+ 1
- 0
libavcodec/vmdav.c 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) {


Loading…
Cancel
Save