mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
a problem for brotli working on-the-fly #113
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 @RenterRen on GitHub (May 27, 2016).
In my scene, I will not finish compressing when I run my program. so,BrotliCompressor object is only one. And on the client, I call the BrotliStateInit(&s) just for once.
So, like this:
while(1)
{
I read 500 bytes to compress------->send to the client--->client decompress the data---->
}
after client decompress the data, the decompressed data is not 500, sometimes,it may be 200, sometimes,it may be 800, How can I resolve the problem?