mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-16 05:04:22 +02:00
Add BDL extractor
This commit is contained in:
@@ -70,6 +70,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
println!("Novatek TIMG file detected!");
|
||||
formats::nvt_timg::extract_nvt_timg(&file, &output_path)?;
|
||||
}
|
||||
else if formats::bdl::is_bdl_file(&file) {
|
||||
println!("BDL file detected!");
|
||||
formats::bdl::extract_bdl(&file, &output_path)?;
|
||||
}
|
||||
else if formats::android_ota_payload::is_android_ota_payload_file(&file) {
|
||||
println!("Android OTA payload file detected!");
|
||||
formats::android_ota_payload::extract_android_ota_payload(&file, &output_path)?;
|
||||
|
||||
Reference in New Issue
Block a user