Lines Matching refs:compressed
25 The purpose of this document is to define a lossless compressed data format,
42 does not attempt to allow random access to compressed data.
53 Whenever it does not support a parameter defined in the compressed stream,
69 Content compressed by Zstandard is transformed into a Zstandard __frame__.
97 Zstandard compressed data is made of one or more __frames__.
104 Zstandard frames contain compressed data, while
131 That’s where compressed data is stored.
196 a decoder is allowed to reject a compressed frame
263 To properly decode compressed data,
267 a decoder is allowed to reject a compressed frame
366 - `Compressed_Block` - this is a [Zstandard compressed block](#compressed-blocks),
368 `Block_Size` is the length of `Block_Content`, the compressed data.
397 and the compressed size of any block in the frame.
407 To decompress a compressed block, the compressed size must be provided
410 A compressed block consists of 2 sections :
418 To decode a compressed block, the following elements are necessary :
437 Literals can be stored uncompressed or compressed using Huffman prefix codes.
438 When compressed, an optional tree description can be present,
471 - `Compressed_Literals_Block` - This is a standard Huffman-compressed block,
474 - `Treeless_Literals_Block` - This is a Huffman-compressed block,
475 using Huffman tree _from previous Huffman-compressed literals block_.
549 the Huffman table comes from previously compressed literals block,
564 Reminder : Huffman compressed data consists of either 1 or 4 Huffman-coded streams.
571 enough information to know the decompressed and compressed sizes
577 The compressed size of each stream is provided explicitly in the Jump Table.
579 describing the compressed sizes of the first three streams.
593 A compressed block is a succession of _sequences_ .
682 _Codes_ are FSE compressed,
776 padding. The last byte of the compressed bitstream cannot be `0` for
865 If any sequence in the compressed block requires a larger offset than this,
1191 padding. The last byte of the compressed bitstream cannot be `0` for
1271 the series of weights is compressed using FSE (see below).
1272 The length of the FSE-compressed series is equal to `headerByte` (0-127).
1296 In this case, the series of Huffman weights is compressed using FSE compression.
1300 To decode an FSE bitstream, it is necessary to know its compressed size.
1436 __`Entropy_Tables`__ : follow the same format as tables in [compressed blocks].
1458 [compressed blocks]: #the-format-of-compressed_block
1677 - 0.3.2 : remove additional block size restriction on compressed blocks