[FFmpeg-cvslog] r9554 - trunk/libavcodec/tiff.c
mru
subversion
Mon Jul 9 02:08:48 CEST 2007
Author: mru
Date: Mon Jul 9 02:08:47 2007
New Revision: 9554
Log:
use correct type for palette
Modified:
trunk/libavcodec/tiff.c
Modified: trunk/libavcodec/tiff.c
==============================================================================
--- trunk/libavcodec/tiff.c (original)
+++ trunk/libavcodec/tiff.c Mon Jul 9 02:08:47 2007
@@ -155,7 +155,7 @@ static int tiff_decode_tag(TiffContext *
int tag, type, count, off, value = 0;
uint8_t *src, *dst;
int i, j, ssize, soff, stride;
- int *pal;
+ uint32_t *pal;
uint8_t *rp, *gp, *bp;
tag = tget_short(&buf, s->le);
@@ -245,7 +245,7 @@ static int tiff_decode_tag(TiffContext *
}
if(s->bpp == 8){
/* make default grayscale pal */
- pal = (int *) s->picture.data[1];
+ pal = (uint32_t *) s->picture.data[1];
for(i = 0; i < 256; i++)
pal[i] = i * 0x010101;
}
@@ -378,7 +378,7 @@ static int tiff_decode_tag(TiffContext *
av_log(s->avctx, AV_LOG_ERROR, "Palette met but this is not palettized format\n");
return -1;
}
- pal = (int *) s->picture.data[1];
+ pal = (uint32_t *) s->picture.data[1];
off = type_sizes[type];
rp = buf;
gp = buf + count / 3 * off;
More information about the ffmpeg-cvslog
mailing list