summaryrefslogtreecommitdiffstats
path: root/src/common/data_compression.cpp
blob: fdf4907d130838ad0c67208804c02679994233e5 (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
// Copyright 2019 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <lz4hc.h>

#include "data_compression.h"

namespace Compression {

std::vector<u8> CompressDataLZ4(const u8* source, std::size_t source_size,
                                bool use_LZ4_high_compression) {
    if (source_size > LZ4_MAX_INPUT_SIZE) {
        // Source size exceeds LZ4 maximum input size
        return {};
    }
    const auto source_size_int = static_cast<int>(source_size);
    const int max_compressed_size = LZ4_compressBound(source_size_int);
    std::vector<u8> compressed(max_compressed_size);
    int compressed_size = 0;

    if (use_LZ4_high_compression) {
        compressed_size = LZ4_compress_HC(reinterpret_cast<const char*>(source),
                                          reinterpret_cast<char*>(compressed.data()),
                                          source_size_int, max_compressed_size, LZ4HC_CLEVEL_MAX);
    } else {
        compressed_size = LZ4_compress_default(reinterpret_cast<const char*>(source),
                                               reinterpret_cast<char*>(compressed.data()),
                                               source_size_int, max_compressed_size);
    }

    if (compressed_size <= 0) {
        // Compression failed
        return {};
    }
    compressed.resize(compressed_size);
    return compressed;
}

std::vector<u8> DecompressDataLZ4(const std::vector<u8>& compressed,
                                  std::size_t uncompressed_size) {
    std::vector<u8> uncompressed(uncompressed_size);
    const int size_check = LZ4_decompress_safe(reinterpret_cast<const char*>(compressed.data()),
                                               reinterpret_cast<char*>(uncompressed.data()),
                                               static_cast<int>(compressed.size()),
                                               static_cast<int>(uncompressed.size()));
    if (static_cast<int>(uncompressed_size) != size_check) {
        // Decompression failed
        return {};
    }
    return uncompressed;
}

} // namespace Compression