add gx_dvb extractor

This commit is contained in:
theubusu
2026-04-27 18:37:03 +02:00
parent 550d9270c4
commit 55ae04002e
4 changed files with 81 additions and 0 deletions
+6
View File
@@ -29,6 +29,7 @@ pub mod amlogic;
pub mod sdboot;
pub mod sdimage;
pub mod cd5;
pub mod gx_dvb;
pub mod pup;
@@ -220,6 +221,11 @@ pub fn get_registry() -> Vec<Format> {
detector_func: crate::formats::cd5::is_cd5_file,
extractor_func: crate::formats::cd5::extract_cd5,
},
Format {
name: "gx_dvb",
detector_func: crate::formats::gx_dvb::is_gx_dvb_file,
extractor_func: crate::formats::gx_dvb::extract_gx_dvb,
},
]
}