Lines Matching defs:nb_pal
36 int nb_pal;
107 ico->images[i].nb_pal = avio_r8(pb);
108 if (ico->images[i].nb_pal == 255)
109 ico->images[i].nb_pal = 0;
192 image->nb_pal = AV_RL32(buf + 32);
194 if (st->codecpar->bits_per_coded_sample <= 8 && !image->nb_pal) {
195 image->nb_pal = 1 << st->codecpar->bits_per_coded_sample;
196 AV_WL32(buf + 32, image->nb_pal);
199 if (image->nb_pal > INT_MAX / 4 - 14 - 40)
202 AV_WL32(buf - 4, 14 + 40 + image->nb_pal * 4);