Lines Matching defs:length
35 int length; ///< length (bytes) of image
38 int maplength; ///< length (bytes) of colormap
50 bytestream2_put_be32u(&s->p, s->length);
128 // update data length for header
129 s->length = bytestream2_tell_p(&s->p) - 32 - s->maplength;
167 s->length = avctx->height * (FFALIGN(avctx->width * s->depth, 16) >> 3);
168 s->size = 32 + s->maplength + s->length * s->type;
187 // update data length in header after RLE
189 AV_WB32(&avpkt->data[16], s->length);
199 { "rle", "Use run-length compression", OFFSET(type), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },