mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-16 05:04:22 +02:00
add philips_bdp_extractor
This commit is contained in:
+6
-1
@@ -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,
|
||||
},
|
||||
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user