2019-09-07 23:15:04 +02:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-07-07 00:52:40 +02:00
|
|
|
#include <span>
|
2019-09-07 23:15:04 +02: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.
|
|
|
|
*
|
|
|
|
* @param source the uncompressed source memory region.
|
|
|
|
* @param compression_level the used compression level. Should be between 1 and 22.
|
|
|
|
*
|
|
|
|
* @return the compressed data.
|
|
|
|
*/
|
2023-07-07 00:52:40 +02:00
|
|
|
[[nodiscard]] std::vector<u8> CompressDataZSTD(std::span<const u8> source, s32 compression_level);
|
2019-09-07 23:15:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compresses a source memory region with Zstandard with the default compression level and returns
|
|
|
|
* the compressed data in a vector.
|
|
|
|
*
|
|
|
|
* @param source the uncompressed source memory region.
|
|
|
|
*
|
|
|
|
* @return the compressed data.
|
|
|
|
*/
|
2023-07-07 00:52:40 +02:00
|
|
|
[[nodiscard]] std::vector<u8> CompressDataZSTDDefault(std::span<const u8> source);
|
2019-09-07 23:15:04 +02: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.
|
|
|
|
*/
|
2023-07-07 00:52:40 +02:00
|
|
|
[[nodiscard]] std::vector<u8> DecompressDataZSTD(std::span<const u8> compressed);
|
2019-09-07 23:15:04 +02:00
|
|
|
|
2020-01-16 03:57:56 +01:00
|
|
|
} // namespace Common::Compression
|