add philips_bdp_extractor

This commit is contained in:
theubusu
2026-05-04 13:58:34 +02:00
parent 81b9cd169f
commit 196662d218
4 changed files with 245 additions and 2 deletions
+6 -1
View File
@@ -31,6 +31,7 @@ pub mod sdimage;
pub mod cd5;
pub mod gx_dvb;
pub mod onkyo;
pub mod philips_bdp;
pub mod pup;
@@ -212,6 +213,11 @@ pub fn get_registry() -> Vec<Format> {
detector_func: crate::formats::mtk_pkg_new::is_mtk_pkg_new_file,
extractor_func: crate::formats::mtk_pkg_new::extract_mtk_pkg_new,
},
Format {
name: "philips_bdp",
detector_func: crate::formats::philips_bdp::is_philips_bdp_file,
extractor_func: crate::formats::philips_bdp::extract_philips_bdp,
},
Format {
name: "mtk_bdp",
detector_func: crate::formats::mtk_bdp::is_mtk_bdp_file,
@@ -232,6 +238,5 @@ pub fn get_registry() -> Vec<Format> {
detector_func: crate::formats::onkyo::is_onkyo_file,
extractor_func: crate::formats::onkyo::extract_onkyo,
},
]
}