X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=src%2Fdemuxers%2Fmod.rs;h=c6096c73a51e713fdfbafe59c37b2778dc99acda;hb=999ca6c91a5f4a696cbb62f814921ccfb8a63105;hp=159002495d1c93b0e2e7dbc548dd34872ba4b31d;hpb=ca41f125f3589e28991a1ba5ee044154d2283075;p=nihav.git diff --git a/src/demuxers/mod.rs b/src/demuxers/mod.rs index 1590024..c6096c7 100644 --- a/src/demuxers/mod.rs +++ b/src/demuxers/mod.rs @@ -1,19 +1,27 @@ +#[cfg(feature="demuxer_gdv")] pub mod gdv; +#[cfg(feature="demuxer_avi")] pub mod avi; use std::fmt; use std::rc::Rc; use frame::*; -//use std::collections::HashMap; +use std::collections::HashMap; use io::byteio::*; +/// Possible stream types. #[derive(Debug,Clone,Copy)] #[allow(dead_code)] pub enum StreamType { + /// video stream Video, + /// audio stream Audio, + /// subtitles Subtitles, + /// any data stream (or might be an unrecognized audio/video stream) Data, + /// nonexistent stream None, } @@ -74,9 +82,16 @@ impl NAPacket { } pub fn get_stream(&self) -> Rc { self.stream.clone() } pub fn get_pts(&self) -> Option { self.pts } + pub fn get_dts(&self) -> Option { self.dts } + pub fn get_duration(&self) -> Option { self.duration } + pub fn is_keyframe(&self) -> bool { self.keyframe } pub fn get_buffer(&self) -> Rc> { self.buffer.clone() } } +impl Drop for NAPacket { + fn drop(&mut self) {} +} + impl fmt::Display for NAPacket { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { let mut foo = format!("[pkt for {} size {}", self.stream, self.buffer.len()); @@ -104,6 +119,8 @@ type DemuxerResult = Result; pub trait Demux<'a> { fn open(&mut self) -> DemuxerResult<()>; + fn get_num_streams(&self) -> usize; + fn get_stream(&self, idx: usize) -> Option>; fn get_frame(&mut self) -> DemuxerResult; fn seek(&mut self, time: u64) -> DemuxerResult<()>; } @@ -132,7 +149,7 @@ impl<'a> NAPacketReader for ByteReader<'a> { } } -pub struct Demuxer { +struct Demuxer { streams: Vec>, } @@ -152,6 +169,7 @@ impl Demuxer { None } } + #[allow(dead_code)] pub fn get_stream_by_id(&self, id: u32) -> Option> { for i in 0..self.streams.len() { if self.streams[i].get_id() == id { @@ -160,15 +178,49 @@ impl Demuxer { } None } + pub fn get_num_streams(&self) -> usize { self.streams.len() } } impl From for DemuxerError { fn from(_: ByteIOError) -> Self { DemuxerError::IOError } } -//impl NADemuxerBuilder { -// #[allow(unused_variables)] -// pub fn create_demuxer(name: &str, url: &str) -> DemuxerResult>> { -// unimplemented!() -// } -//} +pub trait FrameFromPacket { + fn new_from_pkt(pkt: &NAPacket, info: Rc) -> NAFrame; + fn fill_timestamps(&mut self, pkt: &NAPacket); +} + +impl FrameFromPacket for NAFrame { + fn new_from_pkt(pkt: &NAPacket, info: Rc) -> NAFrame { + NAFrame::new(pkt.pts, pkt.dts, pkt.duration, info, HashMap::new()) + } + fn fill_timestamps(&mut self, pkt: &NAPacket) { + self.set_pts(pkt.pts); + self.set_dts(pkt.dts); + self.set_duration(pkt.duration); + } +} + +///The structure used to create demuxers. +pub trait DemuxerCreator { + /// Create new demuxer instance that will use `ByteReader` source as an input. + fn new_demuxer<'a>(&self, br: &'a mut ByteReader<'a>) -> Box + 'a>; + /// Get the name of current demuxer creator. + fn get_name(&self) -> &'static str; +} + +const DEMUXERS: &[&'static DemuxerCreator] = &[ +#[cfg(feature="demuxer_avi")] + &avi::AVIDemuxerCreator {}, +#[cfg(feature="demuxer_gdv")] + &gdv::GDVDemuxerCreator {}, +]; + +pub fn find_demuxer(name: &str) -> Option<&DemuxerCreator> { + for &dmx in DEMUXERS { + if dmx.get_name() == name { + return Some(dmx); + } + } + None +}