Lines Matching defs:width
98 s->buffer1_size = avctx->width * avctx->height;
102 s->buffer2_size = avctx->width * avctx->height;
216 int width = s->avctx->width;
221 line_inc = stride - width;
225 int count = FFMIN(pixel_count, width - current_x);
232 if (current_x >= width) {
248 int width = s->avctx->width;
252 x + motion_x < 0 || x + motion_x >= s->avctx->width)
260 line_inc = stride - width;
266 if (prev_palette_plane == palette_plane && FFABS(motion_x + width*motion_y) < pixel_count) {
274 int count = FFMIN3(pixel_count, width - curframe_x,
275 width - prevframe_x);
285 if (curframe_x >= width) {
290 if (prevframe_x >= width) {
300 int width = s->avctx->width;
302 int total_pixels = width * height;
452 y += (x + size) / width;
453 x = (x + size) % width;