switch NACodecInfo to Arc
[nihav.git] / nihav-core / src / codecs / mod.rs
CommitLineData
c3e7a747
KS
1use std::fmt;
2use std::ops::{Add, AddAssign, Sub, SubAssign};
3
4e8b4f31 4pub use crate::frame::*;
32007ad9 5use std::mem;
aca89041
KS
6use crate::io::byteio::ByteIOError;
7use crate::io::bitreader::BitReaderError;
8use crate::io::codebook::CodebookError;
77d06de2
KS
9
10#[derive(Debug,Clone,Copy,PartialEq)]
11#[allow(dead_code)]
12pub enum DecoderError {
6d3bb0b2 13 NoFrame,
e35062e7 14 AllocError,
503374e7 15 TryAgain,
77d06de2
KS
16 InvalidData,
17 ShortData,
18 MissingReference,
19 NotImplemented,
20 Bug,
21}
22
cf64af13 23pub type DecoderResult<T> = Result<T, DecoderError>;
77d06de2
KS
24
25impl From<ByteIOError> for DecoderError {
26 fn from(_: ByteIOError) -> Self { DecoderError::ShortData }
27}
28
29impl From<BitReaderError> for DecoderError {
30 fn from(e: BitReaderError) -> Self {
31 match e {
32 BitReaderError::BitstreamEnd => DecoderError::ShortData,
33 _ => DecoderError::InvalidData,
34 }
35 }
36}
37
38impl From<CodebookError> for DecoderError {
39 fn from(_: CodebookError) -> Self { DecoderError::InvalidData }
40}
41
e35062e7
KS
42impl From<AllocatorError> for DecoderError {
43 fn from(_: AllocatorError) -> Self { DecoderError::AllocError }
44}
45
88c03b61 46#[allow(dead_code)]
5641dccf 47pub struct HAMShuffler {
22cb00db 48 lastframe: Option<NAVideoBuffer<u8>>,
88c03b61
KS
49}
50
51impl HAMShuffler {
52 #[allow(dead_code)]
5641dccf 53 pub fn new() -> Self { HAMShuffler { lastframe: None } }
88c03b61 54 #[allow(dead_code)]
5641dccf 55 pub fn clear(&mut self) { self.lastframe = None; }
88c03b61 56 #[allow(dead_code)]
5641dccf 57 pub fn add_frame(&mut self, buf: NAVideoBuffer<u8>) {
22cb00db 58 self.lastframe = Some(buf);
88c03b61
KS
59 }
60 #[allow(dead_code)]
5641dccf 61 pub fn clone_ref(&mut self) -> Option<NAVideoBuffer<u8>> {
3bd541c8 62 if let Some(ref mut frm) = self.lastframe {
22cb00db 63 let newfrm = frm.copy_buffer();
3bd541c8
KS
64 *frm = newfrm.clone();
65 Some(newfrm)
5c253468
KS
66 } else {
67 None
68 }
88c03b61
KS
69 }
70 #[allow(dead_code)]
5641dccf 71 pub fn get_output_frame(&mut self) -> Option<NAVideoBuffer<u8>> {
88c03b61
KS
72 match self.lastframe {
73 Some(ref frm) => Some(frm.clone()),
74 None => None,
75 }
76 }
77}
78
241e56f1
KS
79impl Default for HAMShuffler {
80 fn default() -> Self { Self { lastframe: None } }
81}
82
3f29a2a8 83#[allow(dead_code)]
5641dccf 84pub struct IPShuffler {
3f29a2a8
KS
85 lastframe: Option<NAVideoBuffer<u8>>,
86}
87
88impl IPShuffler {
89 #[allow(dead_code)]
5641dccf 90 pub fn new() -> Self { IPShuffler { lastframe: None } }
3f29a2a8 91 #[allow(dead_code)]
5641dccf 92 pub fn clear(&mut self) { self.lastframe = None; }
3f29a2a8 93 #[allow(dead_code)]
5641dccf 94 pub fn add_frame(&mut self, buf: NAVideoBuffer<u8>) {
3f29a2a8
KS
95 self.lastframe = Some(buf);
96 }
97 #[allow(dead_code)]
5641dccf 98 pub fn get_ref(&mut self) -> Option<NAVideoBuffer<u8>> {
3f29a2a8
KS
99 if let Some(ref frm) = self.lastframe {
100 Some(frm.clone())
101 } else {
102 None
103 }
32007ad9
KS
104 }
105}
106
241e56f1
KS
107impl Default for IPShuffler {
108 fn default() -> Self { Self { lastframe: None } }
109}
110
32007ad9 111#[allow(dead_code)]
5641dccf 112pub struct IPBShuffler {
32007ad9
KS
113 lastframe: Option<NAVideoBuffer<u8>>,
114 nextframe: Option<NAVideoBuffer<u8>>,
115}
116
117impl IPBShuffler {
118 #[allow(dead_code)]
5641dccf 119 pub fn new() -> Self { IPBShuffler { lastframe: None, nextframe: None } }
32007ad9 120 #[allow(dead_code)]
5641dccf 121 pub fn clear(&mut self) { self.lastframe = None; self.nextframe = None; }
32007ad9 122 #[allow(dead_code)]
5641dccf 123 pub fn add_frame(&mut self, buf: NAVideoBuffer<u8>) {
32007ad9
KS
124 mem::swap(&mut self.lastframe, &mut self.nextframe);
125 self.lastframe = Some(buf);
126 }
127 #[allow(dead_code)]
5641dccf 128 pub fn get_lastref(&mut self) -> Option<NAVideoBuffer<u8>> {
32007ad9
KS
129 if let Some(ref frm) = self.lastframe {
130 Some(frm.clone())
131 } else {
132 None
133 }
134 }
135 #[allow(dead_code)]
5641dccf 136 pub fn get_nextref(&mut self) -> Option<NAVideoBuffer<u8>> {
32007ad9
KS
137 if let Some(ref frm) = self.nextframe {
138 Some(frm.clone())
139 } else {
140 None
141 }
3f29a2a8 142 }
3c8c667d 143 #[allow(dead_code)]
5641dccf 144 pub fn get_b_fwdref(&mut self) -> Option<NAVideoBuffer<u8>> {
3c8c667d
KS
145 if let Some(ref frm) = self.nextframe {
146 Some(frm.clone())
147 } else {
148 None
149 }
150 }
151 #[allow(dead_code)]
5641dccf 152 pub fn get_b_bwdref(&mut self) -> Option<NAVideoBuffer<u8>> {
3c8c667d
KS
153 if let Some(ref frm) = self.lastframe {
154 Some(frm.clone())
155 } else {
156 None
157 }
158 }
3f29a2a8
KS
159}
160
241e56f1
KS
161impl Default for IPBShuffler {
162 fn default() -> Self { Self { lastframe: None, nextframe: None } }
163}
164
52aad9fe 165#[derive(Debug,Clone,Copy,PartialEq)]
c3e7a747
KS
166pub struct MV {
167 pub x: i16,
168 pub y: i16,
169}
170
171impl MV {
172 pub fn new(x: i16, y: i16) -> Self { MV{ x: x, y: y } }
173 pub fn pred(a: MV, b: MV, c: MV) -> Self {
174 let x;
175 if a.x < b.x {
176 if b.x < c.x {
177 x = b.x;
178 } else {
179 if a.x < c.x { x = c.x; } else { x = a.x; }
180 }
181 } else {
182 if b.x < c.x {
183 if a.x < c.x { x = a.x; } else { x = c.x; }
184 } else {
185 x = b.x;
186 }
187 }
188 let y;
189 if a.y < b.y {
190 if b.y < c.y {
191 y = b.y;
192 } else {
193 if a.y < c.y { y = c.y; } else { y = a.y; }
194 }
195 } else {
196 if b.y < c.y {
197 if a.y < c.y { y = a.y; } else { y = c.y; }
198 } else {
199 y = b.y;
200 }
201 }
202 MV { x: x, y: y }
203 }
204}
205
206pub const ZERO_MV: MV = MV { x: 0, y: 0 };
207
208impl Add for MV {
209 type Output = MV;
210 fn add(self, other: MV) -> MV { MV { x: self.x + other.x, y: self.y + other.y } }
211}
212
213impl AddAssign for MV {
214 fn add_assign(&mut self, other: MV) { self.x += other.x; self.y += other.y; }
215}
216
217impl Sub for MV {
218 type Output = MV;
219 fn sub(self, other: MV) -> MV { MV { x: self.x - other.x, y: self.y - other.y } }
220}
221
222impl SubAssign for MV {
223 fn sub_assign(&mut self, other: MV) { self.x -= other.x; self.y -= other.y; }
224}
225
226impl fmt::Display for MV {
227 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
228 write!(f, "{},{}", self.x, self.y)
229 }
230}
231
232
77d06de2 233pub trait NADecoder {
2422d969 234 fn init(&mut self, info: NACodecInfoRef) -> DecoderResult<()>;
88c03b61 235 fn decode(&mut self, pkt: &NAPacket) -> DecoderResult<NAFrameRef>;
77d06de2
KS
236}
237
70259941 238#[derive(Clone,Copy)]
2a4130ba 239pub struct DecoderInfo {
5641dccf
KS
240 pub name: &'static str,
241 pub get_decoder: fn () -> Box<NADecoder>,
70259941
KS
242}
243
5641dccf
KS
244#[cfg(any(feature="h263"))]
245pub mod blockdsp;
88c58b1b 246
88c58b1b 247#[cfg(feature="h263")]
5641dccf 248pub mod h263;
cf64af13 249
5641dccf
KS
250pub struct RegisteredDecoders {
251 decs: Vec<DecoderInfo>,
252}
253
254impl RegisteredDecoders {
255 pub fn new() -> Self {
256 Self { decs: Vec::new() }
257 }
258 pub fn add_decoder(&mut self, dec: DecoderInfo) {
259 self.decs.push(dec);
260 }
261 pub fn find_decoder(&self, name: &str) -> Option<fn () -> Box<NADecoder>> {
262 for &dec in self.decs.iter() {
263 if dec.name == name {
264 return Some(dec.get_decoder);
265 }
70259941 266 }
5641dccf 267 None
70259941 268 }
d10c9311
KS
269 pub fn iter(&self) -> std::slice::Iter<DecoderInfo> {
270 self.decs.iter()
271 }
70259941 272}