-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bitreader_no_error
- Loading branch information
Showing
26 changed files
with
1,562 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
//! In a Zstandard frame, there's a frame header, followed by one or more *blocks*. | ||
//! | ||
//! A block contains data, and a header describing how that data is encoded, as well | ||
//! as other misc metadata. | ||
//! | ||
//! <https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md#blocks> | ||
|
||
pub mod block; | ||
pub mod literals_section; | ||
pub mod sequence_section; |
Oops, something went wrong.