mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
doc: correct lossless prefix coding table & code
extra bit counts and literal distance return value Change-Id: I290e3ee8900469503a323f87e9dbb8ca5cb4afc7
This commit is contained in:
parent
4c3975792b
commit
61c9d161d5
@ -662,14 +662,14 @@ instead of a million (distance) or several thousands (length).
|
||||
| 6 | 9..12 | 2 |
|
||||
| 7 | 13..16 | 2 |
|
||||
| ... | ... | ... |
|
||||
| 38 | 262145..524288 | 17 |
|
||||
| 39 | 524289..1048576 | 17 |
|
||||
| 38 | 262145..524288 | 18 |
|
||||
| 39 | 524289..1048576 | 18 |
|
||||
|
||||
The code to obtain a value from the prefix code is as follows:
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
if (prefix_code < 4) {
|
||||
return prefix_code;
|
||||
return prefix_code + 1;
|
||||
}
|
||||
int extra_bits = (prefix_code - 2) >> 1;
|
||||
int offset = (2 + (prefix_code & 1)) << extra_bits;
|
||||
|
Loading…
Reference in New Issue
Block a user