Lines Matching defs:height
109 for (int y = 0; y < avctx->height; y++) {
157 int *width, int *height,
166 const int h = avctx->height;
227 *height = y_end + 1 - *y_start;
230 *width, *height, *x_start, *y_start, avctx->width, avctx->height);
237 int *width, int *height, int *x_start, int *y_start)
246 y_end = avctx->height - 1;
259 *height = y_end + 1 - *y_start;
289 *width, *height, *x_start, *y_start, avctx->width, avctx->height);
300 int disposal, len = 0, height = avctx->height, width = avctx->width, x, y;
317 gif_crop_translucent(avctx, buf, linesize, &width, &height, &x_start, &y_start);
321 gif_crop_opaque(avctx, palette, buf, linesize, &width, &height, &x_start, &y_start);
338 bytestream_put_le16(bytestream, avctx->height);
355 linesize, width, height);
384 bytestream_put_le16(bytestream, height);
406 s->shrunk_buf = av_malloc(avctx->height * linesize);
412 remap_frame_to_palette(buf, linesize, s->shrunk_buf, linesize, avctx->width, avctx->height, map);
421 for (y = 0; y < height; y++) {
431 for (y = 0; y < height; y++) {
456 if (avctx->width > 65535 || avctx->height > 65535) {
464 s->buf_size = avctx->width*avctx->height*2 + 1000;
484 if ((ret = ff_alloc_packet(avctx, pkt, avctx->width*avctx->height*7/5 + AV_INPUT_BUFFER_MIN_SIZE)) < 0)