Lines Matching defs:width
29 if (avctx->width & 1) {
30 av_log(avctx, AV_LOG_ERROR, "v210x needs even width\n");
43 int width = avctx->width;
48 if (avpkt->size < avctx->width * avctx->height * 8 / 3) {
53 if (avpkt->size > avctx->width * avctx->height * 8 / 3) {
63 yend = ydst + width;
77 ydst += pic->linesize[0] / 2 - width;
78 udst += pic->linesize[1] / 2 - width / 2;
79 vdst += pic->linesize[2] / 2 - width / 2;
80 yend = ydst + width;
93 ydst += pic->linesize[0] / 2 - width;
94 udst += pic->linesize[1] / 2 - width / 2;
95 vdst += pic->linesize[2] / 2 - width / 2;
96 yend = ydst + width;
108 ydst += pic->linesize[0] / 2 - width;
109 udst += pic->linesize[1] / 2 - width / 2;
110 vdst += pic->linesize[2] / 2 - width / 2;
111 yend = ydst + width;