You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using zstandard wihtout the magic header, but for decompression there is no support in decompress method. This requires to prepend the magic header before processing it.
It's a minor issue but it's not very efficient having to concatenate the buffers unnecessarily.
Opened a pull request here: #217 with the following changes:
Add optional paramater format to get_frame_paramaters and switch to using getFrameHeader_advanced internally
Use getFrameHeader_advanced in decompress instead of getFrameContentSize
The text was updated successfully, but these errors were encountered:
We're using zstandard wihtout the magic header, but for decompression there is no support in
decompress
method. This requires to prepend the magic header before processing it.It's a minor issue but it's not very efficient having to concatenate the buffers unnecessarily.
Opened a pull request here: #217 with the following changes:
The text was updated successfully, but these errors were encountered: