Lines Matching defs:width
72 int width;
175 unsigned x, y, width, height, level;
187 width = 1 << ((4 + level) / 2);
195 memset(&dst[y * (pitch / 4)], 0, width);
211 memset(&dst[y * (pitch / 4)], mean, width);
216 for (x = 0; x < width / 4; x++, codebook++) {
242 int x, y, width, height, level;
254 width = 1 << ((4 + level) / 2);
276 for (x = 0; x < width / 4; x++, codebook++) {
337 int width, int height)
366 mv.x = av_clip(mv.x, -2 * x, 2 * (width - x - 16));
380 int width, int height)
436 mvx = av_clip(mvx, -2 * x, 2 * (width - x - 8));
458 int width, int height)
484 pitch, motion, x, y, width, height);
495 pitch, motion, x, y, width, height);
532 int width = s->width;
581 /* load width, height (12 bits each) */
582 width = get_bits(bitbuf, 12);
585 if (!width || !height)
588 /* get width, height from table */
589 width = ff_svq1_frame_size_table[frame_size_code][0];
615 s->width = width;
627 int result, i, x, y, width, height;
673 result = ff_set_dimensions(avctx, s->width, s->height);
687 av_fast_padded_malloc(&s->pmv, &s->pmv_allocated, (FFALIGN(s->width, 16) / 8 + 3) * sizeof(*s->pmv));
695 width = FFALIGN(s->width, 16);
700 width = FFALIGN(s->width / 4, 16);
709 for (x = 0; x < width; x += 16) {
725 s->prev->width != s->width || s->prev->height != s->height) {
730 memset(s->pmv, 0, ((width / 8) + 3) * sizeof(svq1_pmv));
733 for (x = 0; x < width; x += 16) {
737 s->pmv, x, y, width, height);
815 s->width = avctx->width + 3 & ~3;