mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
Add new file format RVZ based on WIA
This commit is contained in:
parent
f21a254042
commit
e2ae2b3b0b
12 changed files with 84 additions and 48 deletions
|
@ -37,7 +37,8 @@ enum class BlobType
|
|||
CISO,
|
||||
WBFS,
|
||||
TGC,
|
||||
WIA
|
||||
WIA,
|
||||
RVZ,
|
||||
};
|
||||
|
||||
class BlobReader
|
||||
|
@ -176,7 +177,7 @@ 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, WIACompressionType compression_type,
|
||||
const std::string& outfile_path, bool rvz, WIACompressionType compression_type,
|
||||
int compression_level, int chunk_size, CompressCB callback = nullptr,
|
||||
void* arg = nullptr);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue