Add amlogic image extractor, sparse: add support for FILL chunk.

This commit is contained in:
theubusu
2026-02-01 20:11:49 +01:00
parent 48f8868d71
commit 13482802ba
5 changed files with 129 additions and 1 deletions
+5 -1
View File
@@ -115,7 +115,11 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
else if formats::pfl_upg::is_pfl_upg_file(&file) {
println!("PFL UPG file detected!");
formats::pfl_upg::extract_pfl_upg(&file, &output_path)?;
}
}
else if formats::amlogic::is_amlogic_file(&file) {
println!("Amlogic image file detected!");
formats::amlogic::extract_amlogic(&file, &output_path)?;
}
else if formats::pana_dvd::is_pana_dvd_file(&file) {
println!("PANA_DVD file detected!");
formats::pana_dvd::extract_pana_dvd(&file, &output_path)?;