Lines Matching defs:zstream
64 FFZStream zstream;
71 z_stream *const zstream = &c->zstream.zstream;
74 int max_size = deflateBound(zstream, avctx->width * avctx->height * 3);
84 zret = deflateReset(zstream);
89 zstream->next_out = pkt->data;
90 zstream->avail_out = pkt->size;
93 zstream->next_in = p->data[0] + p->linesize[0] * i;
94 zstream->avail_in = avctx->width * 3;
95 zret = deflate(zstream, Z_NO_FLUSH);
101 zret = deflate(zstream, Z_FINISH);
107 pkt->size = zstream->total_out;
142 return ff_deflate_init(&c->zstream, c->compression, avctx);
149 ff_deflate_end(&c->zstream);