From: Kostya Shishkov Date: Sat, 16 Nov 2019 17:24:44 +0000 (+0100) Subject: core/formats: make NASoniton fields public X-Git-Url: https://git.nihav.org/?p=nihav.git;a=commitdiff_plain;h=a92a51132747ee570a7c9b2d45fddcfc82cb659b core/formats: make NASoniton fields public --- 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;