Lines Matching defs:image
118 IcoImage *image;
127 image = &ico->images[ico->current_image++];
129 image->offset = avio_tell(pb);
130 image->width = (par->width == 256) ? 0 : par->width;
131 image->height = (par->height == 256) ? 0 : par->height;
134 image->bits = par->bits_per_coded_sample;
135 image->size = pkt->size;
144 image->bits = AV_RL16(pkt->data + 28); // allows things like 1bit and 4bit images to be preserved
145 image->size = pkt->size - 14 + par->height * (par->width + 7) / 8;
200 .mime_type = "image/vnd.microsoft.icon",