Cosmetics

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21911 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-01-13 12:39:13 +00:00
parent 5b7eb989f2
commit 497403d31f
1 changed files with 7 additions and 7 deletions

View File

@ -138,22 +138,22 @@ static int demux_gif_fill_buffer(demuxer_t *demuxer, demux_stream_t *ds)
// copy the palette // copy the palette
for (y = 0; y < cnt; y++) { for (y = 0; y < cnt; y++) {
priv->palette[(y * 4) + 0] = effective_map->Colors[y].Blue; priv->palette[(y * 4) + 0] = effective_map->Colors[y].Blue;
priv->palette[(y * 4) + 1] = effective_map->Colors[y].Green; priv->palette[(y * 4) + 1] = effective_map->Colors[y].Green;
priv->palette[(y * 4) + 2] = effective_map->Colors[y].Red; priv->palette[(y * 4) + 2] = effective_map->Colors[y].Red;
priv->palette[(y * 4) + 3] = 0; priv->palette[(y * 4) + 3] = 0;
} }
memcpy_pic(dest, buf, w, h, priv->w, gif->Image.Width); memcpy_pic(dest, buf, w, h, priv->w, gif->Image.Width);
priv->useref = 1; priv->useref = 1;
if (refmode == 1) memcpy(priv->refimg, dp->buffer, priv->w * priv->h); if (refmode == 1) memcpy(priv->refimg, dp->buffer, priv->w * priv->h);
if (refmode == 2 && priv->useref) { if (refmode == 2 && priv->useref) {
dest = priv->refimg + priv->w * t + l; dest = priv->refimg + priv->w * t + l;
memset(buf, gif->SBackGroundColor, len); memset(buf, gif->SBackGroundColor, len);
memcpy_pic(dest, buf, w, h, priv->w, gif->Image.Width); memcpy_pic(dest, buf, w, h, priv->w, gif->Image.Width);
} }
if (!refmode) priv->useref = 0; if (!refmode) priv->useref = 0;
} }
free(buf); free(buf);