Lines Matching defs:width
153 * @param width plane width
154 * @param bw plane width in 8x8 blocks
156 static void init_lengths(BinkContext *c, int width, int bw)
158 width = FFALIGN(width, 8);
160 c->bundle[BINK_SRC_BLOCK_TYPES].len = av_log2((width >> 3) + 511) + 1;
162 c->bundle[BINK_SRC_SUB_BLOCK_TYPES].len = av_log2((width >> 4) + 511) + 1;
169 c->bundle[BINK_SRC_Y_OFF].len = av_log2((width >> 3) + 511) + 1;
187 bw = (c->avctx->width + 7) >> 3;
869 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
1035 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
1037 int width = c->avctx->width >> is_chroma;
1046 memset(dst + i * stride, fill, width);
1050 init_lengths(c, FFMAX(width, 8), bw);
1378 if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0)