Lines Matching defs:height
53 int width, height;
103 if (!(avctx->width && avctx->height)) {
109 ctx->deflatelen = avctx->width * avctx->height * (3 + 1);
161 if (y + h > ctx->height)
162 h = ctx->height - y;
205 if (ctx->cursor_x >= avctx->width || ctx->cursor_y >= avctx->height) {
208 ctx->cursor_x, ctx->cursor_y, avctx->width, avctx->height);
329 int srcuv_stride, int width, int height)
332 for (line = 0; line < height; line++) {
418 x2 > ctx->width || y2 > ctx->height
422 x, y, x2, y2, ctx->width, ctx->height);
476 if (avctx->width != w || avctx->height != h) {
478 avctx->width, avctx->height, ctx->width, ctx->height);
485 ctx->refframe->height = ctx->height = h;
533 if (ctx->width != avctx->width || ctx->height != avctx->height) {
534 int deflatelen = avctx->width * avctx->height * (3 + 1);