Lines Matching defs:width

96     int width;
111 int width;
185 unsigned width;
288 int sbwidth = DIVRNDUP(s->seq.width, 4);
296 w = s->seq.width >> (i ? s->chroma_x_shift : 0);
326 int w = s->seq.width;
577 for (x = 1; x < b->width; x++) \
584 for (x = 1; x < b->width; x++) { \
604 int cb_width = s->codeblock[b->level + (b->orientation != subband_ll)].width;
622 right = (b->width * (cb_x+1LL)) / cb_width;
728 int left = b1->width * slice_x / s->num_x;
729 int right = b1->width *(slice_x+1) / s->num_x;
830 o->left = b->width * x / s->num_x;
831 o->tot_h = ((b->width * (x + 1)) / s->num_x) - o->left;
1057 p->width = s->seq.width >> (i ? s->chroma_x_shift : 0);
1059 p->idwt.width = w = CALC_PADDING(p->width , s->wavelet_depth);
1061 p->idwt.stride = FFALIGN(p->idwt.width, 8) << (1 + s->pshift);
1073 b->width = w;
1261 CHECKEDREAD(s->codeblock[i].width , tmp < 1 || tmp > (s->avctx->width >>s->wavelet_depth-i), "codeblock width invalid\n")
1269 s->codeblock[i].width = s->codeblock[i].height = 1;
1276 s->num_x * (uint64_t)s->avctx->width > INT_MAX ||
1278 s->num_x > s->avctx->width ||
1512 s->sbwidth = DIVRNDUP(s->seq.width, 4*s->plane[0].xbsep);
1728 if (x + p->xblen > p->width +EDGE_WIDTH/2 ||
1735 p->width+EDGE_WIDTH/2, p->height+EDGE_WIDTH/2);
1810 static void select_dsp_funcs(DiracContext *s, int width, int height, int xblen, int yblen)
1830 static int interpolate_refplane(DiracContext *s, DiracFrame *ref, int plane, int width, int height)
1838 s->mpvencdsp.draw_edges(ref->hpel[plane][0], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM); /* EDGE_TOP | EDGE_BOTTOM values just copied to make it build, this needs to be ensured */
1857 ref->avframe->linesize[plane], width, height);
1858 s->mpvencdsp.draw_edges(ref->hpel[plane][1], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
1859 s->mpvencdsp.draw_edges(ref->hpel[plane][2], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
1860 s->mpvencdsp.draw_edges(ref->hpel[plane][3], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
1897 s->edge_emu_buffer[i] = s->edge_emu_buffer_base + i*FFALIGN(p->width, 16);
1918 p->idwt.stride, p->width, 16);
1923 select_dsp_funcs(s, p->width, p->height, p->xblen, p->yblen);
1926 int ret = interpolate_refplane(s, s->ref_pics[i], comp, p->width, p->height);
1957 (int16_t*)(p->idwt.buf) + start*(p->idwt.stride >> 1), (p->idwt.stride >> 1), p->width, h);
1977 f->width = avctx->width + 2 * EDGE_WIDTH;
1988 f->width = avctx->width;
2148 if (CALC_PADDING((int64_t)dsh->width, MAX_DWT_LEVELS) * CALC_PADDING((int64_t)dsh->height, MAX_DWT_LEVELS) * 5LL > avctx->max_pixels)
2151 ret = ff_set_dimensions(avctx, dsh->width, dsh->height);