From a92a51132747ee570a7c9b2d45fddcfc82cb659b Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sat, 16 Nov 2019 18:24:44 +0100 Subject: [PATCH] core/formats: make NASoniton fields public --- nihav-core/src/formats.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; -- 2.30.2