summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-12 20:19:51 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-12 20:19:51 +0100
commit3b5733bcf992158d2594d73df672a0c9ca2d6b44 (patch)
tree8c959895bbce69f2cb09fc3ca7379b2ba677a40f /libavcodec
parentfd09cd08c0ad059ee41ccafc6836a285c1b35c45 (diff)
Set TIFF default grascale palette opaque.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index 8d0bb98689..1060a4403e 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -313,7 +313,7 @@ static int init_image(TiffContext *s)
/* make default grayscale pal */
pal = (uint32_t *) s->picture.data[1];
for (i = 0; i < 1<<s->bpp; i++)
- pal[i] = i * 255 / ((1<<s->bpp) - 1) * 0x010101;
+ pal[i] = 0xFF << 24 | i * 255 / ((1<<s->bpp) - 1) * 0x010101;
}
}
return 0;