Skip to content

Commit 8b12bd6

Browse files
committed
Add Man Page Documentation
1 parent d720558 commit 8b12bd6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

programs/zstd.1.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,18 @@ The list of available _options_:
387387
Note: If `windowLog` is set to larger than 27, `--long=windowLog` or
388388
`--memory=windowSize` needs to be passed to the decompressor.
389389

390+
- `windowFrac`=_wfrac_, `wfrac`=_wfrac_:
391+
Set the window size to a non-power-of-two value, as an adjustment to the
392+
power-of-two window size set by the `windowLog` parameter.
393+
394+
The Zstd format supports expressing window sizes as
395+
`(1 + wfrac / 8) * (2 ^ wlog)` where `wfrac` has an integer value between
396+
0 and 7 inclusive and `wlog` has an integer value between 10 and 41.
397+
(Although see the documentation on `windowLog` above.)
398+
399+
This parameter has no effect unless the `windowLog` is also set. It also
400+
has no effect when the `windowLog` is set to its maximum supported value.
401+
390402
- `hashLog`=_hlog_, `hlog`=_hlog_:
391403
Specify the maximum number of bits for a hash table.
392404

0 commit comments

Comments
 (0)