Commit bd3a12d6 authored by Peter Ross's avatar Peter Ross Committed by Michael Niedermayer

ico: consider IconEntry.NumColors of 255 to be ambiguous

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3e8a368b
...@@ -76,6 +76,8 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -76,6 +76,8 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec->width = avio_r8(pb); st->codec->width = avio_r8(pb);
st->codec->height = avio_r8(pb); st->codec->height = avio_r8(pb);
ico->images[i].nb_pal = avio_r8(pb); ico->images[i].nb_pal = avio_r8(pb);
if (ico->images[i].nb_pal == 255)
ico->images[i].nb_pal = 0;
avio_skip(pb, 3); avio_skip(pb, 3);
st->codec->bits_per_coded_sample = avio_rl16(pb); st->codec->bits_per_coded_sample = avio_rl16(pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment