diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-11-12 20:06:35 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-11-12 20:06:35 +0100 |
commit | dcbd18c61540329c51a015bb662aab891ddae61f (patch) | |
tree | 814d90eda141b1415c8acf49672027362fdbed23 | |
parent | e18f70c2d132c239899440cf01a14db23a638c59 (diff) | |
download | ffmpeg-dcbd18c61540329c51a015bb662aab891ddae61f.tar.gz |
Set Delphine Software International CIN palette opaque.
-rw-r--r-- | libavcodec/dsicinav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsicinav.c b/libavcodec/dsicinav.c index 53d4f90d2e..80c9677de3 100644 --- a/libavcodec/dsicinav.c +++ b/libavcodec/dsicinav.c @@ -223,7 +223,7 @@ static int cinvideo_decode_frame(AVCodecContext *avctx, if (palette_colors_count > 256) return AVERROR_INVALIDDATA; for (i = 0; i < palette_colors_count; ++i) { - cin->palette[i] = bytestream_get_le24(&buf); + cin->palette[i] = 0xFF << 24 | bytestream_get_le24(&buf); bitmap_frame_size -= 3; } } else { |