From 0e4bd964cc60a199b22ae0621c81c804c74b7964 Mon Sep 17 00:00:00 2001
From: bruvzg <7645683+bruvzg@users.noreply.github.com>
Date: Wed, 29 Mar 2023 09:31:25 +0300
Subject: Expose brotli decompression to the scripting API.
---
doc/classes/PackedByteArray.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'doc/classes/PackedByteArray.xml')
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml
index a3f23fa7ae..431ccf634c 100644
--- a/doc/classes/PackedByteArray.xml
+++ b/doc/classes/PackedByteArray.xml
@@ -181,7 +181,7 @@
- Returns a new [PackedByteArray] with the data decompressed. Set the compression mode using one of [enum FileAccess.CompressionMode]'s constants. [b]This method only accepts gzip and deflate compression modes.[/b]
+ Returns a new [PackedByteArray] with the data decompressed. Set the compression mode using one of [enum FileAccess.CompressionMode]'s constants. [b]This method only accepts brotli, gzip, and deflate compression modes.[/b]
This method is potentially slower than [code]decompress[/code], as it may have to re-allocate its output buffer multiple times while decompressing, whereas [code]decompress[/code] knows it's output buffer size from the beginning.
GZIP has a maximal compression ratio of 1032:1, meaning it's very possible for a small compressed payload to decompress to a potentially very large output. To guard against this, you may provide a maximum size this function is allowed to allocate in bytes via [param max_output_size]. Passing -1 will allow for unbounded output. If any positive value is passed, and the decompression exceeds that amount in bytes, then an error will be returned.
--
cgit v1.2.3