2022-04-23 09:59:50 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-02-08 22:11:00 +00:00
|
|
|
|
2019-04-15 18:00:04 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-05-24 10:32:32 +01:00
|
|
|
#include <span>
|
2019-02-08 22:11:00 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common::Compression {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compresses a source memory region with Zstandard and returns the compressed data in a vector.
|
|
|
|
*
|
2020-08-15 10:25:28 +01:00
|
|
|
* @param source The uncompressed source memory region.
|
|
|
|
* @param source_size The size of the uncompressed source memory region.
|
|
|
|
* @param compression_level The used compression level. Should be between 1 and 22.
|
2019-02-08 22:11:00 +00:00
|
|
|
*
|
|
|
|
* @return the compressed data.
|
|
|
|
*/
|
2020-08-15 10:25:28 +01:00
|
|
|
[[nodiscard]] std::vector<u8> CompressDataZSTD(const u8* source, std::size_t source_size,
|
|
|
|
s32 compression_level);
|
2019-02-08 22:11:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compresses a source memory region with Zstandard with the default compression level and returns
|
|
|
|
* the compressed data in a vector.
|
|
|
|
*
|
2020-08-15 10:25:28 +01:00
|
|
|
* @param source The uncompressed source memory region.
|
|
|
|
* @param source_size The size of the uncompressed source memory region.
|
2019-02-08 22:11:00 +00:00
|
|
|
*
|
|
|
|
* @return the compressed data.
|
|
|
|
*/
|
2020-08-15 10:25:28 +01:00
|
|
|
[[nodiscard]] std::vector<u8> CompressDataZSTDDefault(const u8* source, std::size_t source_size);
|
2019-02-08 22:11:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Decompresses a source memory region with Zstandard and returns the uncompressed data in a vector.
|
|
|
|
*
|
|
|
|
* @param compressed the compressed source memory region.
|
|
|
|
*
|
|
|
|
* @return the decompressed data.
|
|
|
|
*/
|
2021-05-24 10:32:32 +01:00
|
|
|
[[nodiscard]] std::vector<u8> DecompressDataZSTD(std::span<const u8> compressed);
|
2019-02-08 22:11:00 +00:00
|
|
|
|
2021-05-24 10:32:32 +01:00
|
|
|
} // namespace Common::Compression
|