Lines Matching defs:height
141 int width, height, bpp;
270 static int jpg_decode_data(JPGContext *c, int width, int height,
293 mb_h = (height + 15) >> 4;
899 tile_height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
1018 int width, int height,
1034 for (j = 0; j < height; j++, dst += stride, jpeg_tile = FF_PTR_ADD(jpeg_tile, tile_stride)) {
1053 int width, height;
1069 height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
1077 for (j = 0; j < height; j++, dst += c->framebuf_stride)
1082 return jpg_decode_data(&c->jc, width, height, src, src_end - src,
1119 NULL, 0, width, height, pal, npal, tidx);
1128 for (i = 0; i < (FFALIGN(height, 16) >> 4); i++) {
1149 memset(c->jpeg_tile, 0, c->tile_stride * height);
1150 jpg_decode_data(&c->jc, width, height, src, src_end - src,
1156 width, height, pal, npal, tidx);
1166 aligned_height = c->height + 15;
1344 if (y + h > c->height)
1345 h = c->height - y;
1426 c->height = 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);
1460 c->tiles_y = (c->height + c->tile_height - 1) / c->tile_height;
1560 if (c->width && c->height && c->framebuf) {
1567 for (i = 0; i < avctx->height; i++)
1580 c->height = 0;
1602 c->orig_height = avctx->height;