Lines Matching defs:width
141 int width, height, bpp;
270 static int jpg_decode_data(JPGContext *c, int width, int height,
291 width = FFALIGN(width, 16);
292 mb_w = width >> 4;
898 tile_width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
904 avpriv_request_sample(avctx, "large tile width");
1018 int width, int height,
1024 int align_width = FFALIGN(width, 16);
1037 for (i = 0; i < width; i++) {
1044 skip_bits_long(&gb, nb * (align_width - width));
1053 int width, height;
1068 width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
1078 for (i = 0; i < width; i++)
1082 return jpg_decode_data(&c->jc, width, height, src, src_end - src,
1119 NULL, 0, width, height, pal, npal, tidx);
1125 bstride = FFALIGN(width, 16) >> 3;
1129 for (j = 0; j < (FFALIGN(width, 16) >> 4); j++) {
1150 jpg_decode_data(&c->jc, width, height, src, src_end - src,
1156 width, height, pal, npal, tidx);
1165 c->framebuf_stride = FFALIGN(c->width + 15, 16) * 3;
1342 if (x + w > c->width)
1343 w = c->width - x;
1425 c->width = bytestream2_get_be32(&bc);
1427 if (c->width < 16 || c->height < 16) {
1430 c->width, c->height);
1434 if (c->width != avctx->width || c->height != avctx->height) {
1435 ret = ff_set_dimensions(avctx, c->width, c->height);
1459 c->tiles_x = (c->width + c->tile_width - 1) / c->tile_width;
1560 if (c->width && c->height && c->framebuf) {
1570 c->width * 3);
1579 c->width =
1601 c->orig_width = avctx->width;