remove unused import
[nihav.git] / src / demuxers / gdv.rs
CommitLineData
5869fd63
KS
1use super::*;
2use io::byteio::*;
3use frame::*;
20ef4353 4use formats::*;
5869fd63
KS
5//use std::collections::HashMap;
6
7enum GDVState {
8 NewFrame,
9 AudioRead,
10}
11
12#[allow(dead_code)]
eb71d98f 13struct GremlinVideoDemuxer<'a> {
20ef4353
KS
14 opened: bool,
15 src: &'a mut ByteReader<'a>,
16 frames: u16,
17 cur_frame: u16,
18 asize: usize,
19 apacked: bool,
20 state: GDVState,
21 pktdta: Vec<u8>,
22 dmx: Demuxer,
23 a_id: Option<usize>,
24 v_id: Option<usize>,
5869fd63
KS
25}
26
56af6a92
KS
27struct GDVFixedSizes {
28 id: u16,
29 width: u16,
30 height: u16,
31}
32const GDV_SIZE_TABLE: &[GDVFixedSizes] = &[
33 GDVFixedSizes { id: 0, width: 320, height: 200 },
34 GDVFixedSizes { id: 1, width: 640, height: 200 },
35 GDVFixedSizes { id: 2, width: 320, height: 167 },
36 GDVFixedSizes { id: 3, width: 320, height: 180 },
37 GDVFixedSizes { id: 4, width: 320, height: 400 },
38 GDVFixedSizes { id: 5, width: 320, height: 170 },
39 GDVFixedSizes { id: 6, width: 160, height: 85 },
40 GDVFixedSizes { id: 7, width: 160, height: 83 },
41 GDVFixedSizes { id: 8, width: 160, height: 90 },
42 GDVFixedSizes { id: 9, width: 280, height: 128 },
43 GDVFixedSizes { id: 10, width: 320, height: 240 },
44 GDVFixedSizes { id: 11, width: 320, height: 201 },
45 GDVFixedSizes { id: 16, width: 640, height: 400 },
46 GDVFixedSizes { id: 17, width: 640, height: 200 },
47 GDVFixedSizes { id: 18, width: 640, height: 180 },
48 GDVFixedSizes { id: 19, width: 640, height: 167 },
49 GDVFixedSizes { id: 20, width: 640, height: 170 },
50 GDVFixedSizes { id: 21, width: 320, height: 240 },
51];
52
20ef4353 53impl<'a> Demux<'a> for GremlinVideoDemuxer<'a> {
5869fd63
KS
54 #[allow(unused_variables)]
55 fn open(&mut self) -> DemuxerResult<()> {
56 let src = &mut self.src;
57 let magic = src.read_u32le()?;
58 if magic != 0x29111994 { return Err(DemuxerError::InvalidData); }
59 let id = src.read_u16le()?;
60 let frames = src.read_u16le()?;
61 let fps = src.read_u16le()?;
62 let aflags = src.read_u16le()?;
63 let rate = src.read_u16le()?;
64 let depth = src.read_u16le()?;
65 let max_fs = src.read_u16le()?;
66 src.read_skip(2)?;
56af6a92
KS
67 let mut width = src.read_u16le()?;
68 let mut height = src.read_u16le()?;
69 if (width == 0) && (height == 0) {
70 for el in GDV_SIZE_TABLE {
71 if el.id == id {
72 width = el.width;
73 height = el.height;
74 break;
75 }
76 }
77 if (width == 0) && (height == 0) { return Err(DemuxerError::InvalidData); }
78 }
5869fd63 79 if max_fs > 0 {
81b3165f
KS
80 let mut edata: Vec<u8> = Vec::with_capacity(768);
81 if depth == 1 {
82 edata.resize(768, 0);
83 src.read_buf(edata.as_mut_slice())?;
84 }
66116504 85 let vhdr = NAVideoInfo::new(width as usize, height as usize, false, PAL8_FORMAT);
5869fd63 86 let vci = NACodecTypeInfo::Video(vhdr);
81b3165f 87 let vinfo = NACodecInfo::new("gdv-video", vci, if edata.len() == 0 { None } else { Some(edata) });
e189501e 88 self.v_id = self.dmx.add_stream(NAStream::new(StreamType::Video, 0, vinfo, 1, fps as u32));
5869fd63
KS
89 }
90 if (aflags & 1) != 0 {
91 let channels = if (aflags & 2) != 0 { 2 } else { 1 };
81b3165f
KS
92 let packed = if (aflags & 8) != 0 { 1 } else { 0 };
93 let depth = if (aflags & 4) != 0 { 16 } else { 8 };
94
95 let ahdr = NAAudioInfo::new(rate as u32, channels as u8, if depth == 16 { SND_S16_FORMAT } else { SND_U8_FORMAT }, 2);
96 let ainfo = NACodecInfo::new(if packed != 0 { "gdv-audio" } else { "pcm" },
97 NACodecTypeInfo::Audio(ahdr), None);
e189501e 98 self.a_id = self.dmx.add_stream(NAStream::new(StreamType::Audio, 1, ainfo, 1, rate as u32));
5869fd63 99
81b3165f 100 self.asize = (((rate / fps) * channels * (depth / 8)) >> packed) as usize;
5869fd63 101 self.apacked = (aflags & 8) != 0;
5869fd63 102 }
5869fd63
KS
103 self.frames = frames;
104 self.opened = true;
105 self.state = GDVState::NewFrame;
106 Ok(())
107 }
108
109 #[allow(unused_variables)]
110 fn get_frame(&mut self) -> DemuxerResult<NAPacket> {
111 if !self.opened { return Err(DemuxerError::NoSuchInput); }
112 if self.cur_frame >= self.frames { return Err(DemuxerError::EOF); }
113 match self.state {
114 GDVState::NewFrame if self.asize > 0 => { self.read_achunk() }
115 _ => { self.read_vchunk() }
116 }
117 }
118
66116504
KS
119 fn get_num_streams(&self) -> usize { self.dmx.get_num_streams() }
120 fn get_stream(&self, idx: usize) -> Option<Rc<NAStream>> { self.dmx.get_stream(idx) }
121
5869fd63
KS
122 #[allow(unused_variables)]
123 fn seek(&mut self, time: u64) -> DemuxerResult<()> {
124 if !self.opened { return Err(DemuxerError::NoSuchInput); }
125 Err(DemuxerError::NotImplemented)
126 }
127}
128/*impl<'a> Drop for GremlinVideoDemuxer<'a> {
129 #[allow(unused_variables)]
130 fn drop(&mut self) {
131 }
132}*/
133impl<'a> GremlinVideoDemuxer<'a> {
eb71d98f 134 fn new(io: &'a mut ByteReader<'a>) -> Self {
5869fd63
KS
135 GremlinVideoDemuxer {
136 cur_frame: 0,
137 frames: 0,
138 opened: false,
139 asize: 0,
140 apacked: false,
141 state: GDVState::NewFrame,
142pktdta: Vec::new(),
143 src: io,
20ef4353
KS
144 a_id: None,
145 v_id: None,
146 dmx: Demuxer::new()
5869fd63
KS
147 }
148 }
149
5869fd63
KS
150 fn read_achunk(&mut self) -> DemuxerResult<NAPacket> {
151 self.state = GDVState::AudioRead;
20ef4353 152 let str = self.dmx.get_stream(self.a_id.unwrap()).unwrap();
e189501e
KS
153 let (tb_num, tb_den) = str.get_timebase();
154 let ts = NATimeInfo::new(Some(self.cur_frame as u64), None, None, tb_num, tb_den);
155 self.src.read_packet(str, ts, true, self.asize)
5869fd63
KS
156 }
157
158 fn read_vchunk(&mut self) -> DemuxerResult<NAPacket> {
20ef4353 159 let str = self.dmx.get_stream(self.v_id.unwrap()).unwrap();
5869fd63
KS
160 let mut src = &mut self.src;
161 let magic = src.read_u16be()?;
162 if magic != 0x0513 { return Err(DemuxerError::InvalidData); }
163 let size = (src.read_u16le()? as usize) + 4;
e24794ee 164 let tmp = src.peek_u32le()?;
5869fd63 165 let flags = (tmp & 0xFF) as usize;
5869fd63
KS
166 self.state = GDVState::NewFrame;
167 self.cur_frame = self.cur_frame + 1;
e189501e
KS
168 let (tb_num, tb_den) = str.get_timebase();
169 let ts = NATimeInfo::new(Some((self.cur_frame - 1) as u64), None, None, tb_num, tb_den);
170 src.read_packet(str, ts, if (flags & 64) != 0 { true } else { false }, size)
5869fd63
KS
171 }
172}
173
eb71d98f
KS
174pub struct GDVDemuxerCreator { }
175
176impl DemuxerCreator for GDVDemuxerCreator {
177 fn new_demuxer<'a>(&self, br: &'a mut ByteReader<'a>) -> Box<Demux<'a> + 'a> {
178 Box::new(GremlinVideoDemuxer::new(br))
179 }
180 fn get_name(&self) -> &'static str { "gdv" }
181}
182
5869fd63
KS
183#[cfg(test)]
184mod test {
185 use super::*;
186 use std::fs::File;
187
188 #[test]
189 fn test_gdv_demux() {
190 let mut file = File::open("assets/intro1.gdv").unwrap();
191 let mut fr = FileReader::new_read(&mut file);
192 let mut br = ByteReader::new(&mut fr);
193 let mut dmx = GremlinVideoDemuxer::new(&mut br);
194 dmx.open().unwrap();
195 loop {
196 let pktres = dmx.get_frame();
197 if let Err(e) = pktres {
198 if (e as i32) == (DemuxerError::EOF as i32) { break; }
199 panic!("error");
200 }
201 let pkt = pktres.unwrap();
202 println!("Got {}", pkt);
203 }
204 }
205}