diff options
author | Marton Balint | 2018-04-23 20:46:49 +0200 |
---|---|---|
committer | Marton Balint | 2018-04-30 21:50:12 +0200 |
commit | 4c501bafc08c0260c299074d119b85ba39ab334a (patch) | |
tree | 29c1d6ed95acf783f42415c70d65e4afb5c17d96 /libavcodec | |
parent | e894d958fce6f47cbe1e4a5e3f2c74af47057125 (diff) |
avcodec/hnm4video: fix palette alpha
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/hnm4video.c | 1 |
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++; } |