summaryrefslogtreecommitdiffstats
path: root/src/common/zstd_compression.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* zstd: Use ZSTD_getFrameContentSize instead of ZSTD_getDecompressedSizeMorph2023-03-241-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* zstd_compression: Make use of std::spanLioncash2021-05-241-1/+1
| | | | Allows for the incoming data stream to be non-allocating.
* common/compression: Roll back std::span changesLioncash2020-08-151-6/+6
| | | | Seems like all compilers don't support std::span yet.
* zstd_compression: Make use of std::span in interfacesLioncash2020-07-251-7/+6
| | | | Allows condensing the data and size parameters into a single argument.
* common/zstd_compression: Remove #pragma once directive from source fileLioncash2019-05-041-2/+0
| | | | | Introduced in 72477731ed20c56a4d6f18a22f43224fab667cef. This is only necessary within header files.
* common/zstd_compression: simplify decompression interfaceunknown2019-03-291-7/+8
|
* common/zstd_compression: Add Zstandard wrapperunknown2019-03-291-0/+52