Browse Source

Set Tiertex Limited SEQ palette opaque.

tags/n0.9
Carl Eugen Hoyos 14 years ago
parent
commit
fd09cd08c0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/tiertexseqv.c

+ 1
- 1
libavcodec/tiertexseqv.c View File

@@ -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;
}


Loading…
Cancel
Save