+ added mb211 (novatek)

This commit is contained in:
Pari Malam
2026-06-05 11:39:12 +08:00
parent 3b525e9d31
commit 612ba74bc8
4 changed files with 110 additions and 3 deletions
+8 -1
View File
@@ -54,6 +54,7 @@ pub mod philips_bdp;
pub mod tsb_bin;
pub mod pup;
pub mod vestel;
pub mod novatek_raw;
pub mod msd;
pub mod msd10;
@@ -281,5 +282,11 @@ pub fn get_registry() -> Vec<Format> {
name: "vestel",
detector_func: crate::formats::vestel::is_vestel_file,
extractor_func: crate::formats::vestel::extract_vestel,
}, ]
},
Format {
name: "novatek_raw",
detector_func: crate::formats::novatek_raw::is_novatek_raw_file,
extractor_func: crate::formats::novatek_raw::extract_novatek_raw,
},
]
}