Lines Matching refs:band
63 SubBand band[4][NB_LEVELS * 3 + 1];
107 ctx->band[plane][0].width = w >> NB_LEVELS;
108 ctx->band[plane][0].height = h >> NB_LEVELS;
109 ctx->band[plane][0].size = (w >> NB_LEVELS) * (h >> NB_LEVELS);
114 ctx->band[plane][i + 1].width = w >> scale;
115 ctx->band[plane][i + 1].height = h >> scale;
116 ctx->band[plane][i + 1].size = (w >> scale) * (h >> scale);
118 ctx->band[plane][i + 1].x = (w >> scale) * (((i + 1) % 3) != 2);
119 ctx->band[plane][i + 1].y = (h >> scale) * (((i + 1) % 3) != 1);
329 ctx->band[plane][i + 1].x +
330 ctx->band[plane][i + 1].y * stride;
331 unsigned size = ctx->band[plane][i + 1].size;
336 "wrong magic number: 0x%08"PRIX32" for plane %d, band %d\n",
346 ctx->band[plane][i + 1].width, stride);
349 "error in highpass coefficients for plane %d, band %d\n",
558 ret = read_low_coeffs(avctx, dst + 1, ctx->band[plane][0].width - 1,
559 ctx->band[plane][0].width - 1, 0);
567 ctx->band[plane][0].height - 1, 1, stride);
576 (ctx->band[plane][0].width - 1) * (ctx->band[plane][0].height - 1),
577 ctx->band[plane][0].width - 1, stride);
594 lowpass_prediction(dst, ctx->prediction, ctx->band[plane][0].width,
595 ctx->band[plane][0].height, stride);