Lines Matching defs:zstream
48 FFZStream zstream;
171 z_stream *const zstream = &s->zstream.zstream;
172 ret = inflateReset(zstream);
178 zstream->next_in = avpkt->data + 8;
179 zstream->avail_in = avpkt->size - 8;
183 zstream->next_out = frame->data[p] + (avctx->height - y - 1) * frame->linesize[p];
184 zstream->avail_out = avctx->width >> (p > 0);
186 ret = inflate(zstream, Z_SYNC_FLUSH);
192 memset(zstream->next_out, 0, zstream->avail_out);
290 return ff_inflate_init(&s->zstream, avctx);
297 ff_inflate_end(&s->zstream);