summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2018-04-23 20:46:49 +0200
committerMarton Balint <cus@passwd.hu>2018-04-30 21:50:12 +0200
commit4c501bafc08c0260c299074d119b85ba39ab334a (patch)
tree29c1d6ed95acf783f42415c70d65e4afb5c17d96
parente894d958fce6f47cbe1e4a5e3f2c74af47057125 (diff)
avcodec/hnm4video: fix palette alpha
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r--libavcodec/hnm4video.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/hnm4video.c b/libavcodec/hnm4video.c
index a64dbb1746..9e1ac49ddc 100644
--- a/libavcodec/hnm4video.c
+++ b/libavcodec/hnm4video.c
@@ -375,6 +375,7 @@ static void hnm_update_palette(AVCodecContext *avctx, uint8_t *src,
hnm->palette[writeoffset] = bytestream2_get_be24(&gb);
if (!eight_bit_colors)
hnm->palette[writeoffset] <<= 2;
+ hnm->palette[writeoffset] |= (0xFFU << 24);
count--;
writeoffset++;
}