summaryrefslogtreecommitdiffstats
path: root/src/common/lz4_compression.h
blob: 7200e0f225571002516c23a56038d282e511dec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <span>
#include <vector>

#include "common/common_types.h"

namespace Common::Compression {

/**
 * Compresses a source memory region with LZ4 and returns the compressed data in a vector.
 *
 * @param source      The uncompressed source memory region.
 * @param source_size The size of the uncompressed source memory region.
 *
 * @return the compressed data.
 */
[[nodiscard]] std::vector<u8> CompressDataLZ4(const u8* source, std::size_t source_size);

/**
 * Utilizes the LZ4 subalgorithm LZ4HC with the specified compression level. Higher compression
 * levels result in a smaller compressed size, but require more CPU time for compression. The
 * compression level has almost no impact on decompression speed. Data compressed with LZ4HC can
 * also be decompressed with the default LZ4 decompression.
 *
 * @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 3 and 12.
 *
 * @return the compressed data.
 */
[[nodiscard]] std::vector<u8> CompressDataLZ4HC(const u8* source, std::size_t source_size,
                                                s32 compression_level);

/**
 * Utilizes the LZ4 subalgorithm LZ4HC with the highest possible compression level.
 *
 * @param source      The uncompressed source memory region.
 * @param source_size The size of the uncompressed source memory region
 *
 * @return the compressed data.
 */
[[nodiscard]] std::vector<u8> CompressDataLZ4HCMax(const u8* source, std::size_t source_size);

/**
 * Decompresses a source memory region with LZ4 and returns the uncompressed data in a vector.
 *
 * @param compressed the compressed source memory region.
 * @param uncompressed_size the size in bytes of the uncompressed data.
 *
 * @return the decompressed data.
 */
[[nodiscard]] std::vector<u8> DecompressDataLZ4(std::span<const u8> compressed,
                                                std::size_t uncompressed_size);

int DecompressLZ4(void* dst, size_t dst_size, const void* src, size_t src_size);

} // namespace Common::Compression