diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2017-05-14 18:00:54 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2017-05-14 18:00:54 +0200 |
commit | 83e603fadb920a29f16a1ef2cedb9be4048dab5a (patch) | |
tree | ceba2438205de06a84d12d7acfe41d86b4a509c6 /src/frame.rs | |
parent | 653e5afd9cc1047d60f3faed8f772cb82d26368d (diff) | |
download | nihav-83e603fadb920a29f16a1ef2cedb9be4048dab5a.tar.gz |
print more info for streams
Diffstat (limited to 'src/frame.rs')
-rw-r--r-- | src/frame.rs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/frame.rs b/src/frame.rs index 77a5c17..962198e 100644 --- a/src/frame.rs +++ b/src/frame.rs @@ -1,4 +1,5 @@ use std::collections::HashMap; +use std::fmt; use std::rc::Rc; use formats::*; @@ -17,6 +18,12 @@ impl NAAudioInfo { } } +impl fmt::Display for NAAudioInfo { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + write!(f, "{} Hz, {} ch", self.sample_rate, self.channels) + } +} + #[allow(dead_code)] #[derive(Clone,Copy)] pub struct NAVideoInfo { @@ -32,6 +39,12 @@ impl NAVideoInfo { } } +impl fmt::Display for NAVideoInfo { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + write!(f, "{}x{}", self.width, self.height) + } +} + #[derive(Clone,Copy)] pub enum NACodecTypeInfo { None, @@ -39,6 +52,18 @@ pub enum NACodecTypeInfo { Video(NAVideoInfo), } +impl fmt::Display for NACodecTypeInfo { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + let ret = match *self { + NACodecTypeInfo::None => format!(""), + NACodecTypeInfo::Audio(fmt) => format!("{}", fmt), + NACodecTypeInfo::Video(fmt) => format!("{}", fmt), + }; + write!(f, "{}", ret) + } +} + + #[allow(dead_code)] pub struct NABuffer<'a> { id: u64, |