Lines Matching defs:deflatelen
63 uLongf deflatelen;
109 ctx->deflatelen = avctx->width * avctx->height * (3 + 1);
110 ret = av_reallocp(&ctx->deflatebuffer, ctx->deflatelen);
534 int deflatelen = avctx->width * avctx->height * (3 + 1);
535 if (deflatelen != ctx->deflatelen) {
536 ctx->deflatelen =deflatelen;
537 ret = av_reallocp(&ctx->deflatebuffer, ctx->deflatelen);
539 ctx->deflatelen = 0;
544 dlen = ctx->deflatelen;