mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
RVZ: Make m_rvz a template parameter
Needed for the next commit.
This commit is contained in:
parent
ca4e4a6207
commit
f2c38c0e67
6 changed files with 222 additions and 170 deletions
|
@ -25,7 +25,7 @@
|
|||
|
||||
namespace DiscIO
|
||||
{
|
||||
enum class WIACompressionType : u32;
|
||||
enum class WIARVZCompressionType : u32;
|
||||
|
||||
// Increment CACHE_REVISION (GameFileCache.cpp) if the enum below is modified
|
||||
enum class BlobType
|
||||
|
@ -176,9 +176,9 @@ bool ConvertToGCZ(BlobReader* infile, const std::string& infile_path,
|
|||
bool ConvertToPlain(BlobReader* infile, const std::string& infile_path,
|
||||
const std::string& outfile_path, CompressCB callback = nullptr,
|
||||
void* arg = nullptr);
|
||||
bool ConvertToWIA(BlobReader* infile, const std::string& infile_path,
|
||||
const std::string& outfile_path, bool rvz, WIACompressionType compression_type,
|
||||
int compression_level, int chunk_size, CompressCB callback = nullptr,
|
||||
void* arg = nullptr);
|
||||
bool ConvertToWIAOrRVZ(BlobReader* infile, const std::string& infile_path,
|
||||
const std::string& outfile_path, bool rvz,
|
||||
WIARVZCompressionType compression_type, int compression_level,
|
||||
int chunk_size, CompressCB callback = nullptr, void* arg = nullptr);
|
||||
|
||||
} // namespace DiscIO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue