add onkyo extractor

This commit is contained in:
theubusu
2026-05-01 21:38:35 +02:00
parent 588b52de14
commit 5f926ff5a2
5 changed files with 255 additions and 1 deletions
+6
View File
@@ -30,6 +30,7 @@ pub mod sdboot;
pub mod sdimage;
pub mod cd5;
pub mod gx_dvb;
pub mod onkyo;
pub mod pup;
@@ -226,6 +227,11 @@ pub fn get_registry() -> Vec<Format> {
detector_func: crate::formats::gx_dvb::is_gx_dvb_file,
extractor_func: crate::formats::gx_dvb::extract_gx_dvb,
},
Format {
name: "onkyo",
detector_func: crate::formats::onkyo::is_onkyo_file,
extractor_func: crate::formats::onkyo::extract_onkyo,
},
]
}