Lines Matching defs:xblen
56 #define MAX_BLOCKSIZE 32 /* maximum xblen/yblen we support */
116 uint8_t xblen;
1088 p->xblen = s->plane[0].xblen >> s->chroma_x_shift;
1094 p->xoffset = (p->xblen - p->xbsep)/2;
1122 s->plane[0].xblen = get_interleaved_ue_golomb(gb);
1128 s->plane[0].xblen = default_blen[idx-1];
1136 if (s->plane[0].xblen % (1 << s->chroma_x_shift) != 0 ||
1138 !s->plane[0].xblen || !s->plane[0].yblen) {
1141 s->plane[0].xblen, s->plane[0].yblen, s->chroma_x_shift, s->chroma_y_shift);
1144 if (!s->plane[0].xbsep || !s->plane[0].ybsep || s->plane[0].xbsep < s->plane[0].xblen/2 || s->plane[0].ybsep < s->plane[0].yblen/2) {
1148 if (s->plane[0].xbsep > s->plane[0].xblen || s->plane[0].ybsep > s->plane[0].yblen) {
1152 if (FFMAX(s->plane[0].xblen, s->plane[0].yblen) > MAX_BLOCKSIZE) {
1578 for (x = 0; left && x < p->xblen >> 1; x++)
1580 for (; x < p->xblen >> right; x++)
1581 obmc_weight[x] = wy*weight(x, p->xblen, p->xoffset);
1582 for (; x < p->xblen; x++)
1728 if (x + p->xblen > p->width +EDGE_WIDTH/2 ||
1734 p->xblen, p->yblen, x, y,
1743 uint8_t *obmc_weight, int xblen, int yblen)
1749 for (x = 0; x < xblen; x += 2) {
1768 add_dc(mctmp, block->u.dc[plane], p->stride, obmc_weight, p->xblen, p->yblen);
1810 static void select_dsp_funcs(DiracContext *s, int width, int height, int xblen, int yblen)
1813 if (xblen > 8)
1815 if (xblen > 16)
1923 select_dsp_funcs(s, p->width, p->height, p->xblen, p->yblen);