Lines Matching defs:width
41 int stride, int width, int height)
85 int step = FFMIN(run - i, width - filled);
89 if (filled >= width) {
93 while (run - i > width && rows_to_go > 0) {
94 memset(dst, p, width);
97 i += width;
107 int step = FFMIN(copy, width - filled);
111 if (filled >= width) {
130 int stride, int width, int height,
142 memcpy(dst + (i * stride), refdata + (i * stride), width);
182 if ((me_x + filled < 0) || (me_x + me_w + filled > width) ||
184 (filled + me_w > width) || (height - me_h < 0))
209 if(filled >= width) {
225 if(filled >= width) {
246 while( filled >= width) {
247 filled -= width;
260 if(filled >= width) {
295 qpeg_decode_intra(a, outdata, p->linesize[0], avctx->width, avctx->height);
297 qpeg_decode_inter(a, outdata, p->linesize[0], avctx->width, avctx->height, delta, ctable, ref->data[0]);