Lines Matching defs:width
53 int width, height;
103 if (!(avctx->width && avctx->height)) {
109 ctx->deflatelen = avctx->width * avctx->height * (3 + 1);
159 if (x + w > ctx->width)
160 w = ctx->width - x;
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)
333 for (col = 0; col < width; col++)
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);
484 ctx->refframe->width = ctx->width = w;
533 if (ctx->width != avctx->width || ctx->height != avctx->height) {
534 int deflatelen = avctx->width * avctx->height * (3 + 1);