split NihAV into subcrates
[nihav.git] / nihav-core / src / register.rs
similarity index 98%
rename from src/register.rs
rename to nihav-core/src/register.rs
index b0bce3a2ad59e63906e22d048bcf88d6cbe7c010..5ab28bb94797cf0df7b9b73ffa3abb6bfb036e76 100644 (file)
@@ -30,10 +30,10 @@ const CODEC_CAP_SCALABLE:u32    = 0x000010;
 
 #[derive(Clone)]
 pub struct CodecDescription {
-    name:  &'static str,
-    fname: &'static str,
-    ctype: CodecType,
-    caps:  u32,
+    pub name:  &'static str,
+    pub fname: &'static str,
+    pub ctype: CodecType,
+    pub caps:  u32,
 }
 
 impl CodecDescription {