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
This does not represent data in the stream and only serves to keep the chain linked. The remaining 5 bits encode the distance to the next sigil (0 <= n <=31).
* This sigil represents 1 to 3 zeroes in the data stream, and is a `00` to `00 00 00` replacement to eliminate zeroes, reduce data and keep the chain linked.
65
65
* The remaining 5 bits encode the distance to the next sigil (0 <= n <= 31).
@@ -73,7 +73,7 @@ This does not represent data in the stream and only serves to keep the chain lin
* The reserved bytes `00000ooo` with `ooo` = 1-7 are usable in any manner.
202
202
203
-
### 3.1. <a name='Example:RLEforlongerrowsofequalbytesnotimplemented'></a>Example: RLE for longer rows of equal bytes (not implemented)
203
+
### 3.1. <a id='Example:RLEforlongerrowsofequalbytesnotimplemented'></a>Example: RLE for longer rows of equal bytes (not implemented)
204
204
205
205
It is possible to improve compression by the following means. This complicates the encoder and makes no sense for messages like [*Trice*](https://github.com/rokath/trice) produces. But if user data with long equal byte rows are expected, it can make sense to implement it, when computing power matters and a standard zipping code is too slow.
206
206
@@ -264,13 +264,13 @@ These 5 sigils allow a minimum encoded byte count for equal bytes in a row of up
264
264
265
265
As said, these extended possibilities are currently **not implemented** and shown just for discussion. A decoder, able to interpret such extension, will decode simple encoding as well.
266
266
267
-
### 3.2. <a name='OtherExample:Anyproposal'></a>Other Example: Any proposal?
267
+
### 3.2. <a id='OtherExample:Anyproposal'></a>Other Example: Any proposal?
268
268
269
269
F4 is maybe not use that often and could be used in a completely different way. But this would lead to a different method.
270
270
271
271
<p align="right">(<a href="#top">back to top</a>)</p>
0 commit comments