summaryrefslogtreecommitdiffstats
path: root/libavcodec/tiertexseqv.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-12 20:19:07 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-12 20:19:07 +0100
commitfd09cd08c0ad059ee41ccafc6836a285c1b35c45 (patch)
tree697380225850243675b3fec7e6b0d6a41c0abcd7 /libavcodec/tiertexseqv.c
parent58c3538839a9d174dd67e7d6f08f38f165137610 (diff)
downloadffmpeg-streaming-fd09cd08c0ad059ee41ccafc6836a285c1b35c45.zip
ffmpeg-streaming-fd09cd08c0ad059ee41ccafc6836a285c1b35c45.tar.gz
Set Tiertex Limited SEQ palette opaque.
Diffstat (limited to 'libavcodec/tiertexseqv.c')
-rw-r--r--libavcodec/tiertexseqv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiertexseqv.c b/libavcodec/tiertexseqv.c
index 44ae10e..e8abcd9 100644
--- a/libavcodec/tiertexseqv.c
+++ b/libavcodec/tiertexseqv.c
@@ -178,7 +178,7 @@ static int seqvideo_decode(SeqVideoContext *seq, const unsigned char *data, int
for (i = 0; i < 256; i++) {
for (j = 0; j < 3; j++, data++)
c[j] = (*data << 2) | (*data >> 4);
- palette[i] = AV_RB24(c);
+ palette[i] = 0xFF << 24 | AV_RB24(c);
}
seq->frame.palette_has_changed = 1;
}
OpenPOWER on IntegriCloud