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

Revert "Always write all colours for animated gif files, including transparent ones."

It breaks some opaque samples.

This reverts commit d4fdaafdb7.
This commit is contained in:
Carl Eugen Hoyos 2012-12-21 18:18:39 +01:00
parent 0fb79f30db
commit a3a22c2178

View File

@ -241,9 +241,8 @@ static int gif_read_image(GifState *s)
pr = ptr + width;
for (px = ptr, idx = s->idx_line; px < pr; px++, idx++) {
*px = pal[*idx];
if (*idx == s->transparent_color_index)
*px &= 0xFFFFFF;
if (*idx != s->transparent_color_index)
*px = pal[*idx];
}
if (is_interleaved) {