Lines Matching defs:height

97     int height;
112 int height;
186 unsigned height;
289 int sbheight = DIVRNDUP(s->seq.height, 4);
297 h = s->seq.height >> (i ? s->chroma_y_shift : 0);
327 int h = s->seq.height;
581 for (y = 1; y < b->height; y++) { \
605 int cb_height = s->codeblock[b->level + (b->orientation != subband_ll)].height;
619 bottom = (b->height * (cb_y+1LL)) / cb_height;
730 int top = b1->height * slice_y / s->num_y;
731 int bottom = b1->height *(slice_y+1) / s->num_y;
829 o->top = b->height * y / s->num_y;
832 o->tot_v = ((b->height * (y + 1)) / s->num_y) - o->top;
1058 p->height = s->seq.height >> (i ? s->chroma_y_shift : 0);
1060 p->idwt.height = h = CALC_PADDING(p->height, s->wavelet_depth);
1074 b->height = h;
1262 CHECKEDREAD(s->codeblock[i].height, tmp < 1 || tmp > (s->avctx->height>>s->wavelet_depth-i), "codeblock height invalid\n")
1269 s->codeblock[i].width = s->codeblock[i].height = 1;
1277 s->num_y * (uint64_t)s->avctx->height > INT_MAX ||
1279 s->num_y > s->avctx->height
1513 s->sbheight = DIVRNDUP(s->seq.height, 4*s->plane[0].ybsep);
1729 y + p->yblen > p->height+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 */
1846 ref->hpel_base[plane][i] = av_malloc((height+2*edge) * ref->avframe->linesize[plane] + 32);
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);
1882 memset(p->idwt.buf, 0, p->idwt.stride * p->idwt.height);
1901 memset(p->idwt.buf, 0, p->idwt.stride * p->idwt.height);
1912 for (y = 0; y < p->height; y += 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);
1942 if (y == s->blheight-1 || start+p->ybsep > p->height)
1943 h = p->height - start;
1978 f->height = avctx->height + 2 * EDGE_WIDTH + 2;
1989 f->height = avctx->height;
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);