summaryrefslogtreecommitdiffstats
path: root/src/common/data_compression.h
blob: 70878b8d9c9defc79ceb708df27163946c227d36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2019 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <vector>

#include "common/common_types.h"

namespace Compression {

std::vector<u8> CompressDataLZ4(const u8* source, std::size_t source_size);

std::vector<u8> DecompressDataLZ4(const std::vector<u8>& compressed, std::size_t uncompressed_size);

} // namespace Compression