Lines Matching refs:zret
417 int zret = Z_OK; // Zlib return code in decode_frame() local
495 zret = inflateReset(&c->zstream); in decode_frame()
496 if (zret != Z_OK) { in decode_frame()
497 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret); in decode_frame()
543 zret = inflate(&c->zstream, Z_SYNC_FLUSH); in decode_frame()
544 if (zret != Z_OK && zret != Z_STREAM_END) { in decode_frame()
545 av_log(avctx, AV_LOG_ERROR, "inflate error %d\n", zret); in decode_frame()
605 int zret; // Zlib return code in decode_init() local
635 zret = inflateInit(&c->zstream); in decode_init()
636 if (zret != Z_OK) { in decode_init()
637 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret); in decode_init()