diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-11-17 11:59:45 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2019-11-17 11:59:45 +0100 |
commit | df159213f11b19739b8e7c8d5ec4e8318cdcef24 (patch) | |
tree | b6a2b2f5075eeb05068740080ba84b3e8827a327 /nihav-core/src | |
parent | afaed986483bab74cc41c17b03399a29fe390901 (diff) | |
download | nihav-df159213f11b19739b8e7c8d5ec4e8318cdcef24.tar.gz |
core/frame: make fields of NAAudioInfo public
Diffstat (limited to 'nihav-core/src')
-rw-r--r-- | nihav-core/src/frame.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nihav-core/src/frame.rs b/nihav-core/src/frame.rs index e1529bf..697013c 100644 --- a/nihav-core/src/frame.rs +++ b/nihav-core/src/frame.rs @@ -8,10 +8,10 @@ pub use crate::refs::*; #[allow(dead_code)] #[derive(Clone,Copy,PartialEq)] pub struct NAAudioInfo { - sample_rate: u32, - channels: u8, - format: NASoniton, - block_len: usize, + pub sample_rate: u32, + pub channels: u8, + pub format: NASoniton, + pub block_len: usize, } impl NAAudioInfo { |