Lines Matching defs:width
75 frame->width = s->avctx->width ;
78 frame->width += 2 * EDGE_WIDTH;
93 frame->width = s->avctx->width;
115 int w= AV_CEIL_RSHIFT(s->avctx->width, LOG2_MB_SIZE);
435 int width, height;
488 width= s->avctx->width;
491 if (!FF_ALLOCZ_TYPED_ARRAY(s->spatial_idwt_buffer, width * height) ||
492 !FF_ALLOCZ_TYPED_ARRAY(s->spatial_dwt_buffer, width * height) || //FIXME this does not belong here
493 !FF_ALLOCZ_TYPED_ARRAY(s->temp_dwt_buffer, width) ||
494 !FF_ALLOCZ_TYPED_ARRAY(s->temp_idwt_buffer, width) ||
495 !FF_ALLOCZ_TYPED_ARRAY(s->run_buffer, ((width + 1) >> 1) * ((height + 1) >> 1)))
526 emu_buf_size = FFMAX(s->mconly_picture->linesize[0], 2*avctx->width+256) * (2 * MB_SIZE + HTAPS_MAX - 1);
527 if (!FF_ALLOCZ_TYPED_ARRAY(s->scratchbuf, FFMAX(s->mconly_picture->linesize[0], 2*avctx->width+256) * 7 * MB_SIZE) ||
539 int w= s->avctx->width;
546 s->plane[plane_index].width = w;
555 b->stride= s->plane[plane_index].width << (s->spatial_decomposition_count - level);
556 b->width = (w + !(orientation&1))>>1;
577 b->x_coeff = av_calloc((b->width + 1) * b->height + 1,
597 int w= is_chroma ? AV_CEIL_RSHIFT(s->avctx->width, s->chroma_h_shift) : s->avctx->width;