mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
call BrotliDecoderDecompressStream mutil times, return DICTIONARY #434
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @luwenpeng on GitHub (Sep 21, 2022).
The data stored in indata is the br-compressed data.
BrotliDecoderDecompressStream will return BROTLI_DECODER_RESULT_ERROR when BrotliDecoderDecompressStream is called multiple times for decompression.
At this time, the errcode obtained by
BrotliDecoderErrorCode errcode = BrotliDecoderGetErrorCode(brdec_state);is -12, and the error information obtained byBrotliDecoderErrorString(errcode)is DICTIONARY.@eustas commented on GitHub (Sep 21, 2022):
Shouldn't it be: