mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
Convert references to https from http
This commit is contained in:
@ -5,7 +5,7 @@ This directory contains material defining the Zstandard format,
|
||||
as well as detailed instructions to use `zstd` library.
|
||||
|
||||
__`zstd_manual.html`__ : Documentation of `zstd.h` API, in html format.
|
||||
Click on this link: [http://zstd.net/zstd_manual.html](http://zstd.net/zstd_manual.html)
|
||||
Click on this link: [https://facebook.github.io/zstd/zstd_manual.html](https://facebook.github.io/zstd/zstd_manual.html)
|
||||
to display documentation of latest release in readable format within a browser.
|
||||
|
||||
__`zstd_compression_format.md`__ : This document defines the Zstandard compression format.
|
||||
|
@ -1890,7 +1890,7 @@ static size_t HUF_decompress_4stream(const HUF_dtable *const dtable,
|
||||
|
||||
/// Initializes a Huffman table using canonical Huffman codes
|
||||
/// For more explanation on canonical Huffman codes see
|
||||
/// http://www.cs.uofs.edu/~mccloske/courses/cmps340/huff_canonical_dec2015.html
|
||||
/// https://www.cs.scranton.edu/~mccloske/courses/cmps340/huff_canonical_dec2015.html
|
||||
/// Codes within a level are allocated in symbol order (i.e. smaller symbols get
|
||||
/// earlier codes)
|
||||
static void HUF_init_dtable(HUF_dtable *const table, const u8 *const bits,
|
||||
|
@ -26,7 +26,7 @@ The purpose of this document is to define a lossless compressed data format,
|
||||
that is independent of CPU type, operating system,
|
||||
file system and character set, suitable for
|
||||
file compression, pipe and streaming compression,
|
||||
using the [Zstandard algorithm](http://www.zstandard.org).
|
||||
using the [Zstandard algorithm](https://facebook.github.io/zstd/).
|
||||
The text of the specification assumes a basic background in programming
|
||||
at the level of bits and other primitive data representations.
|
||||
|
||||
@ -35,7 +35,7 @@ even for an arbitrarily long sequentially presented input data stream,
|
||||
using only an a priori bounded amount of intermediate storage,
|
||||
and hence can be used in data communications.
|
||||
The format uses the Zstandard compression method,
|
||||
and optional [xxHash-64 checksum method](http://www.xxhash.org),
|
||||
and optional [xxHash-64 checksum method](https://cyan4973.github.io/xxHash/),
|
||||
for detection of data corruption.
|
||||
|
||||
The data format defined by this specification
|
||||
@ -134,7 +134,7 @@ __`Content_Checksum`__
|
||||
|
||||
An optional 32-bit checksum, only present if `Content_Checksum_flag` is set.
|
||||
The content checksum is the result
|
||||
of [xxh64() hash function](http://www.xxhash.org)
|
||||
of [xxh64() hash function](https://cyan4973.github.io/xxHash/)
|
||||
digesting the original (decoded) data as input, and a seed of zero.
|
||||
The low 4 bytes of the checksum are stored in __little-endian__ format.
|
||||
|
||||
@ -967,7 +967,7 @@ into a flow of concatenated frames.
|
||||
|
||||
Skippable frames defined in this specification are compatible with [LZ4] ones.
|
||||
|
||||
[LZ4]:http://www.lz4.org
|
||||
[LZ4]:https://lz4.github.io/lz4/
|
||||
|
||||
From a compliant decoder perspective, skippable frames need just be skipped,
|
||||
and their content ignored, resuming decoding after the skippable frame.
|
||||
|
Reference in New Issue
Block a user