Lines Matching defs:width
37 int width, height;
94 width = bytestream_get_le32(&buf);
98 width = bytestream_get_le16(&buf);
135 ret = ff_set_dimensions(avctx, width, height > 0 ? height : -(unsigned)height);
137 av_log(avctx, AV_LOG_ERROR, "Failed to set dimensions %d %d\n", width, height);
219 n = ((avctx->width * depth + 31) / 8) & ~3;
222 n = (avctx->width * depth + 7) / 8;
293 for (j = 0; j < avctx->width >> 3; j++) {
303 for (j = 0; j < (avctx->width & 7); j++) {
304 ptr[avctx->width - (avctx->width & 7) + j] = buf[avctx->width >> 3] >> (7 - j) & 1;
335 for (j = 0; j < avctx->width; j++)
351 for (j = 0; j < avctx->width; j++) {
355 if (j < avctx->width)