X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;ds=sidebyside;f=nihav-core%2Fsrc%2Fformats.rs;h=937f330fd0c96f9b81cfc9145aa82930219f2173;hb=8ee4352b1fad134b2fc3f137f9cfc94804446bfd;hp=9a1d4e8cf1d712fee53a6632b6d2956bb3c6b9d3;hpb=e243ceb4d694cc08767ad70027bb6963f4cefea3;p=nihav.git diff --git a/nihav-core/src/formats.rs b/nihav-core/src/formats.rs index 9a1d4e8..937f330 100644 --- a/nihav-core/src/formats.rs +++ b/nihav-core/src/formats.rs @@ -4,12 +4,12 @@ use std::fmt; #[derive(Debug,Copy,Clone,PartialEq)] pub struct NASoniton { - bits: u8, - be: bool, - packed: bool, - planar: bool, - float: bool, - signed: bool, + pub bits: u8, + pub be: bool, + pub packed: bool, + pub planar: bool, + pub float: bool, + pub signed: bool, } pub const SONITON_FLAG_BE :u32 = 0x01;