add cd5 extractor

This commit is contained in:
theubusu
2026-04-09 16:28:49 +02:00
parent 67a289ba15
commit 8ac15ae011
4 changed files with 179 additions and 0 deletions
+6
View File
@@ -28,6 +28,7 @@ pub mod bdl;
pub mod amlogic;
pub mod sdboot;
pub mod sdimage;
pub mod cd5;
pub mod pup;
@@ -214,6 +215,11 @@ pub fn get_registry() -> Vec<Format> {
detector_func: crate::formats::mtk_bdp::is_mtk_bdp_file,
extractor_func: crate::formats::mtk_bdp::extract_mtk_bdp,
},
Format {
name: "cd5",
detector_func: crate::formats::cd5::is_cd5_file,
extractor_func: crate::formats::cd5::extract_cd5,
},
]
}