core/frame: remove options field from NAFrame until later
[nihav.git] / nihav-core / src / frame.rs
1 //! Packets and decoded frames functionality.
2 use std::cmp::max;
3 //use std::collections::HashMap;
4 use std::fmt;
5 use std::sync::Arc;
6 pub use crate::formats::*;
7 pub use crate::refs::*;
8
9 /// Audio stream information.
10 #[allow(dead_code)]
11 #[derive(Clone,Copy,PartialEq)]
12 pub struct NAAudioInfo {
13 /// Sample rate.
14 pub sample_rate: u32,
15 /// Number of channels.
16 pub channels: u8,
17 /// Audio sample format.
18 pub format: NASoniton,
19 /// Length of one audio block in samples.
20 pub block_len: usize,
21 }
22
23 impl NAAudioInfo {
24 /// Constructs a new `NAAudioInfo` instance.
25 pub fn new(sr: u32, ch: u8, fmt: NASoniton, bl: usize) -> Self {
26 NAAudioInfo { sample_rate: sr, channels: ch, format: fmt, block_len: bl }
27 }
28 /// Returns audio sample rate.
29 pub fn get_sample_rate(&self) -> u32 { self.sample_rate }
30 /// Returns the number of channels.
31 pub fn get_channels(&self) -> u8 { self.channels }
32 /// Returns sample format.
33 pub fn get_format(&self) -> NASoniton { self.format }
34 /// Returns one audio block duration in samples.
35 pub fn get_block_len(&self) -> usize { self.block_len }
36 }
37
38 impl fmt::Display for NAAudioInfo {
39 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
40 write!(f, "{} Hz, {} ch", self.sample_rate, self.channels)
41 }
42 }
43
44 /// Video stream information.
45 #[allow(dead_code)]
46 #[derive(Clone,Copy,PartialEq)]
47 pub struct NAVideoInfo {
48 /// Picture width.
49 pub width: usize,
50 /// Picture height.
51 pub height: usize,
52 /// Picture is stored downside up.
53 pub flipped: bool,
54 /// Picture pixel format.
55 pub format: NAPixelFormaton,
56 }
57
58 impl NAVideoInfo {
59 /// Constructs a new `NAVideoInfo` instance.
60 pub fn new(w: usize, h: usize, flip: bool, fmt: NAPixelFormaton) -> Self {
61 NAVideoInfo { width: w, height: h, flipped: flip, format: fmt }
62 }
63 /// Returns picture width.
64 pub fn get_width(&self) -> usize { self.width as usize }
65 /// Returns picture height.
66 pub fn get_height(&self) -> usize { self.height as usize }
67 /// Returns picture orientation.
68 pub fn is_flipped(&self) -> bool { self.flipped }
69 /// Returns picture pixel format.
70 pub fn get_format(&self) -> NAPixelFormaton { self.format }
71 /// Sets new picture width.
72 pub fn set_width(&mut self, w: usize) { self.width = w; }
73 /// Sets new picture height.
74 pub fn set_height(&mut self, h: usize) { self.height = h; }
75 }
76
77 impl fmt::Display for NAVideoInfo {
78 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
79 write!(f, "{}x{}", self.width, self.height)
80 }
81 }
82
83 /// A list of possible stream information types.
84 #[derive(Clone,Copy,PartialEq)]
85 pub enum NACodecTypeInfo {
86 /// No codec present.
87 None,
88 /// Audio codec information.
89 Audio(NAAudioInfo),
90 /// Video codec information.
91 Video(NAVideoInfo),
92 }
93
94 impl NACodecTypeInfo {
95 /// Returns video stream information.
96 pub fn get_video_info(&self) -> Option<NAVideoInfo> {
97 match *self {
98 NACodecTypeInfo::Video(vinfo) => Some(vinfo),
99 _ => None,
100 }
101 }
102 /// Returns audio stream information.
103 pub fn get_audio_info(&self) -> Option<NAAudioInfo> {
104 match *self {
105 NACodecTypeInfo::Audio(ainfo) => Some(ainfo),
106 _ => None,
107 }
108 }
109 /// Reports whether the current stream is video stream.
110 pub fn is_video(&self) -> bool {
111 match *self {
112 NACodecTypeInfo::Video(_) => true,
113 _ => false,
114 }
115 }
116 /// Reports whether the current stream is audio stream.
117 pub fn is_audio(&self) -> bool {
118 match *self {
119 NACodecTypeInfo::Audio(_) => true,
120 _ => false,
121 }
122 }
123 }
124
125 impl fmt::Display for NACodecTypeInfo {
126 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
127 let ret = match *self {
128 NACodecTypeInfo::None => "".to_string(),
129 NACodecTypeInfo::Audio(fmt) => format!("{}", fmt),
130 NACodecTypeInfo::Video(fmt) => format!("{}", fmt),
131 };
132 write!(f, "{}", ret)
133 }
134 }
135
136 /// Decoded video frame.
137 ///
138 /// NihAV frames are stored in native type (8/16/32-bit elements) inside a single buffer.
139 /// In case of image with several components those components are stored sequentially and can be accessed in the buffer starting at corresponding component offset.
140 #[derive(Clone)]
141 pub struct NAVideoBuffer<T> {
142 info: NAVideoInfo,
143 data: NABufferRef<Vec<T>>,
144 offs: Vec<usize>,
145 strides: Vec<usize>,
146 }
147
148 impl<T: Clone> NAVideoBuffer<T> {
149 /// Returns the component offset (0 for all unavailable offsets).
150 pub fn get_offset(&self, idx: usize) -> usize {
151 if idx >= self.offs.len() { 0 }
152 else { self.offs[idx] }
153 }
154 /// Returns picture info.
155 pub fn get_info(&self) -> NAVideoInfo { self.info }
156 /// Returns an immutable reference to the data.
157 pub fn get_data(&self) -> &Vec<T> { self.data.as_ref() }
158 /// Returns a mutable reference to the data.
159 pub fn get_data_mut(&mut self) -> Option<&mut Vec<T>> { self.data.as_mut() }
160 /// Returns the number of components in picture format.
161 pub fn get_num_components(&self) -> usize { self.offs.len() }
162 /// Creates a copy of current `NAVideoBuffer`.
163 pub fn copy_buffer(&mut self) -> Self {
164 let mut data: Vec<T> = Vec::with_capacity(self.data.len());
165 data.clone_from(self.data.as_ref());
166 let mut offs: Vec<usize> = Vec::with_capacity(self.offs.len());
167 offs.clone_from(&self.offs);
168 let mut strides: Vec<usize> = Vec::with_capacity(self.strides.len());
169 strides.clone_from(&self.strides);
170 NAVideoBuffer { info: self.info, data: NABufferRef::new(data), offs, strides }
171 }
172 /// Returns stride (distance between subsequent lines) for the requested component.
173 pub fn get_stride(&self, idx: usize) -> usize {
174 if idx >= self.strides.len() { return 0; }
175 self.strides[idx]
176 }
177 /// Returns requested component dimensions.
178 pub fn get_dimensions(&self, idx: usize) -> (usize, usize) {
179 get_plane_size(&self.info, idx)
180 }
181 /// Converts current instance into buffer reference.
182 pub fn into_ref(self) -> NABufferRef<Self> {
183 NABufferRef::new(self)
184 }
185 }
186
187 /// A specialised type for reference-counted `NAVideoBuffer`.
188 pub type NAVideoBufferRef<T> = NABufferRef<NAVideoBuffer<T>>;
189
190 /// Decoded audio frame.
191 ///
192 /// NihAV frames are stored in native type (8/16/32-bit elements) inside a single buffer.
193 /// In case of planar audio samples for each channel are stored sequentially and can be accessed in the buffer starting at corresponding channel offset.
194 #[derive(Clone)]
195 pub struct NAAudioBuffer<T> {
196 info: NAAudioInfo,
197 data: NABufferRef<Vec<T>>,
198 offs: Vec<usize>,
199 stride: usize,
200 chmap: NAChannelMap,
201 len: usize,
202 }
203
204 impl<T: Clone> NAAudioBuffer<T> {
205 /// Returns the start position of requested channel data.
206 pub fn get_offset(&self, idx: usize) -> usize {
207 if idx >= self.offs.len() { 0 }
208 else { self.offs[idx] }
209 }
210 /// Returns the distance between the start of one channel and the next one.
211 pub fn get_stride(&self) -> usize { self.stride }
212 /// Returns audio format information.
213 pub fn get_info(&self) -> NAAudioInfo { self.info }
214 /// Returns channel map.
215 pub fn get_chmap(&self) -> &NAChannelMap { &self.chmap }
216 /// Returns an immutable reference to the data.
217 pub fn get_data(&self) -> &Vec<T> { self.data.as_ref() }
218 /// Returns a mutable reference to the data.
219 pub fn get_data_mut(&mut self) -> Option<&mut Vec<T>> { self.data.as_mut() }
220 /// Clones current `NAAudioBuffer` into a new one.
221 pub fn copy_buffer(&mut self) -> Self {
222 let mut data: Vec<T> = Vec::with_capacity(self.data.len());
223 data.clone_from(self.data.as_ref());
224 let mut offs: Vec<usize> = Vec::with_capacity(self.offs.len());
225 offs.clone_from(&self.offs);
226 NAAudioBuffer { info: self.info, data: NABufferRef::new(data), offs, chmap: self.get_chmap().clone(), len: self.len, stride: self.stride }
227 }
228 /// Return the length of frame in samples.
229 pub fn get_length(&self) -> usize { self.len }
230 }
231
232 impl NAAudioBuffer<u8> {
233 /// Constructs a new `NAAudioBuffer` instance.
234 pub fn new_from_buf(info: NAAudioInfo, data: NABufferRef<Vec<u8>>, chmap: NAChannelMap) -> Self {
235 let len = data.len();
236 NAAudioBuffer { info, data, chmap, offs: Vec::new(), len, stride: 0 }
237 }
238 }
239
240 /// A list of possible decoded frame types.
241 #[derive(Clone)]
242 pub enum NABufferType {
243 /// 8-bit video buffer.
244 Video (NAVideoBufferRef<u8>),
245 /// 16-bit video buffer (i.e. every component or packed pixel fits into 16 bits).
246 Video16 (NAVideoBufferRef<u16>),
247 /// 32-bit video buffer (i.e. every component or packed pixel fits into 32 bits).
248 Video32 (NAVideoBufferRef<u32>),
249 /// Packed video buffer.
250 VideoPacked(NAVideoBufferRef<u8>),
251 /// Audio buffer with 8-bit unsigned integer audio.
252 AudioU8 (NAAudioBuffer<u8>),
253 /// Audio buffer with 16-bit signed integer audio.
254 AudioI16 (NAAudioBuffer<i16>),
255 /// Audio buffer with 32-bit signed integer audio.
256 AudioI32 (NAAudioBuffer<i32>),
257 /// Audio buffer with 32-bit floating point audio.
258 AudioF32 (NAAudioBuffer<f32>),
259 /// Packed audio buffer.
260 AudioPacked(NAAudioBuffer<u8>),
261 /// Buffer with generic data (e.g. subtitles).
262 Data (NABufferRef<Vec<u8>>),
263 /// No data present.
264 None,
265 }
266
267 impl NABufferType {
268 /// Returns the offset to the requested component or channel.
269 pub fn get_offset(&self, idx: usize) -> usize {
270 match *self {
271 NABufferType::Video(ref vb) => vb.get_offset(idx),
272 NABufferType::Video16(ref vb) => vb.get_offset(idx),
273 NABufferType::Video32(ref vb) => vb.get_offset(idx),
274 NABufferType::VideoPacked(ref vb) => vb.get_offset(idx),
275 NABufferType::AudioU8(ref ab) => ab.get_offset(idx),
276 NABufferType::AudioI16(ref ab) => ab.get_offset(idx),
277 NABufferType::AudioF32(ref ab) => ab.get_offset(idx),
278 NABufferType::AudioPacked(ref ab) => ab.get_offset(idx),
279 _ => 0,
280 }
281 }
282 /// Returns information for video frames.
283 pub fn get_video_info(&self) -> Option<NAVideoInfo> {
284 match *self {
285 NABufferType::Video(ref vb) => Some(vb.get_info()),
286 NABufferType::Video16(ref vb) => Some(vb.get_info()),
287 NABufferType::Video32(ref vb) => Some(vb.get_info()),
288 NABufferType::VideoPacked(ref vb) => Some(vb.get_info()),
289 _ => None,
290 }
291 }
292 /// Returns reference to 8-bit (or packed) video buffer.
293 pub fn get_vbuf(&self) -> Option<NAVideoBufferRef<u8>> {
294 match *self {
295 NABufferType::Video(ref vb) => Some(vb.clone()),
296 NABufferType::VideoPacked(ref vb) => Some(vb.clone()),
297 _ => None,
298 }
299 }
300 /// Returns reference to 16-bit video buffer.
301 pub fn get_vbuf16(&self) -> Option<NAVideoBufferRef<u16>> {
302 match *self {
303 NABufferType::Video16(ref vb) => Some(vb.clone()),
304 _ => None,
305 }
306 }
307 /// Returns reference to 32-bit video buffer.
308 pub fn get_vbuf32(&self) -> Option<NAVideoBufferRef<u32>> {
309 match *self {
310 NABufferType::Video32(ref vb) => Some(vb.clone()),
311 _ => None,
312 }
313 }
314 /// Returns information for audio frames.
315 pub fn get_audio_info(&self) -> Option<NAAudioInfo> {
316 match *self {
317 NABufferType::AudioU8(ref ab) => Some(ab.get_info()),
318 NABufferType::AudioI16(ref ab) => Some(ab.get_info()),
319 NABufferType::AudioI32(ref ab) => Some(ab.get_info()),
320 NABufferType::AudioF32(ref ab) => Some(ab.get_info()),
321 NABufferType::AudioPacked(ref ab) => Some(ab.get_info()),
322 _ => None,
323 }
324 }
325 /// Returns audio channel map.
326 pub fn get_chmap(&self) -> Option<&NAChannelMap> {
327 match *self {
328 NABufferType::AudioU8(ref ab) => Some(ab.get_chmap()),
329 NABufferType::AudioI16(ref ab) => Some(ab.get_chmap()),
330 NABufferType::AudioI32(ref ab) => Some(ab.get_chmap()),
331 NABufferType::AudioF32(ref ab) => Some(ab.get_chmap()),
332 NABufferType::AudioPacked(ref ab) => Some(ab.get_chmap()),
333 _ => None,
334 }
335 }
336 /// Returns audio frame duration in samples.
337 pub fn get_audio_length(&self) -> usize {
338 match *self {
339 NABufferType::AudioU8(ref ab) => ab.get_length(),
340 NABufferType::AudioI16(ref ab) => ab.get_length(),
341 NABufferType::AudioI32(ref ab) => ab.get_length(),
342 NABufferType::AudioF32(ref ab) => ab.get_length(),
343 NABufferType::AudioPacked(ref ab) => ab.get_length(),
344 _ => 0,
345 }
346 }
347 /// Returns the distance between starts of two channels.
348 pub fn get_audio_stride(&self) -> usize {
349 match *self {
350 NABufferType::AudioU8(ref ab) => ab.get_stride(),
351 NABufferType::AudioI16(ref ab) => ab.get_stride(),
352 NABufferType::AudioI32(ref ab) => ab.get_stride(),
353 NABufferType::AudioF32(ref ab) => ab.get_stride(),
354 NABufferType::AudioPacked(ref ab) => ab.get_stride(),
355 _ => 0,
356 }
357 }
358 /// Returns reference to 8-bit (or packed) audio buffer.
359 pub fn get_abuf_u8(&self) -> Option<NAAudioBuffer<u8>> {
360 match *self {
361 NABufferType::AudioU8(ref ab) => Some(ab.clone()),
362 NABufferType::AudioPacked(ref ab) => Some(ab.clone()),
363 _ => None,
364 }
365 }
366 /// Returns reference to 16-bit audio buffer.
367 pub fn get_abuf_i16(&self) -> Option<NAAudioBuffer<i16>> {
368 match *self {
369 NABufferType::AudioI16(ref ab) => Some(ab.clone()),
370 _ => None,
371 }
372 }
373 /// Returns reference to 32-bit integer audio buffer.
374 pub fn get_abuf_i32(&self) -> Option<NAAudioBuffer<i32>> {
375 match *self {
376 NABufferType::AudioI32(ref ab) => Some(ab.clone()),
377 _ => None,
378 }
379 }
380 /// Returns reference to 32-bit floating point audio buffer.
381 pub fn get_abuf_f32(&self) -> Option<NAAudioBuffer<f32>> {
382 match *self {
383 NABufferType::AudioF32(ref ab) => Some(ab.clone()),
384 _ => None,
385 }
386 }
387 }
388
389 const NA_SIMPLE_VFRAME_COMPONENTS: usize = 4;
390 /// Simplified decoded frame data.
391 pub struct NASimpleVideoFrame<'a, T: Copy> {
392 /// Widths of each picture component.
393 pub width: [usize; NA_SIMPLE_VFRAME_COMPONENTS],
394 /// Heights of each picture component.
395 pub height: [usize; NA_SIMPLE_VFRAME_COMPONENTS],
396 /// Orientation (upside-down or downside-up) flag.
397 pub flip: bool,
398 /// Strides for each component.
399 pub stride: [usize; NA_SIMPLE_VFRAME_COMPONENTS],
400 /// Start of each component.
401 pub offset: [usize; NA_SIMPLE_VFRAME_COMPONENTS],
402 /// Number of components.
403 pub components: usize,
404 /// Pointer to the picture pixel data.
405 pub data: &'a mut [T],
406 }
407
408 impl<'a, T:Copy> NASimpleVideoFrame<'a, T> {
409 /// Constructs a new instance of `NASimpleVideoFrame` from `NAVideoBuffer`.
410 pub fn from_video_buf(vbuf: &'a mut NAVideoBuffer<T>) -> Option<Self> {
411 let vinfo = vbuf.get_info();
412 let components = vinfo.format.components as usize;
413 if components > NA_SIMPLE_VFRAME_COMPONENTS {
414 return None;
415 }
416 let mut w: [usize; NA_SIMPLE_VFRAME_COMPONENTS] = [0; NA_SIMPLE_VFRAME_COMPONENTS];
417 let mut h: [usize; NA_SIMPLE_VFRAME_COMPONENTS] = [0; NA_SIMPLE_VFRAME_COMPONENTS];
418 let mut s: [usize; NA_SIMPLE_VFRAME_COMPONENTS] = [0; NA_SIMPLE_VFRAME_COMPONENTS];
419 let mut o: [usize; NA_SIMPLE_VFRAME_COMPONENTS] = [0; NA_SIMPLE_VFRAME_COMPONENTS];
420 for comp in 0..components {
421 let (width, height) = vbuf.get_dimensions(comp);
422 w[comp] = width;
423 h[comp] = height;
424 s[comp] = vbuf.get_stride(comp);
425 o[comp] = vbuf.get_offset(comp);
426 }
427 let flip = vinfo.flipped;
428 Some(NASimpleVideoFrame {
429 width: w,
430 height: h,
431 flip,
432 stride: s,
433 offset: o,
434 components,
435 data: vbuf.data.as_mut_slice(),
436 })
437 }
438 }
439
440 /// A list of possible frame allocator errors.
441 #[derive(Debug,Clone,Copy,PartialEq)]
442 pub enum AllocatorError {
443 /// Requested picture dimensions are too large.
444 TooLargeDimensions,
445 /// Invalid input format.
446 FormatError,
447 }
448
449 /// Constructs a new video buffer with requested format.
450 ///
451 /// `align` is power of two alignment for image. E.g. the value of 5 means that frame dimensions will be padded to be multiple of 32.
452 pub fn alloc_video_buffer(vinfo: NAVideoInfo, align: u8) -> Result<NABufferType, AllocatorError> {
453 let fmt = &vinfo.format;
454 let mut new_size: usize = 0;
455 let mut offs: Vec<usize> = Vec::new();
456 let mut strides: Vec<usize> = Vec::new();
457
458 for i in 0..fmt.get_num_comp() {
459 if fmt.get_chromaton(i) == None { return Err(AllocatorError::FormatError); }
460 }
461
462 let align_mod = ((1 << align) as usize) - 1;
463 let width = ((vinfo.width as usize) + align_mod) & !align_mod;
464 let height = ((vinfo.height as usize) + align_mod) & !align_mod;
465 let mut max_depth = 0;
466 let mut all_packed = true;
467 let mut all_bytealigned = true;
468 for i in 0..fmt.get_num_comp() {
469 let ochr = fmt.get_chromaton(i);
470 if ochr.is_none() { continue; }
471 let chr = ochr.unwrap();
472 if !chr.is_packed() {
473 all_packed = false;
474 } else if ((chr.get_shift() + chr.get_depth()) & 7) != 0 {
475 all_bytealigned = false;
476 }
477 max_depth = max(max_depth, chr.get_depth());
478 }
479 let unfit_elem_size = match fmt.get_elem_size() {
480 2 | 4 => false,
481 _ => true,
482 };
483
484 //todo semi-packed like NV12
485 if fmt.is_paletted() {
486 //todo various-sized palettes?
487 let stride = vinfo.get_format().get_chromaton(0).unwrap().get_linesize(width);
488 let pic_sz = stride.checked_mul(height);
489 if pic_sz == None { return Err(AllocatorError::TooLargeDimensions); }
490 let pal_size = 256 * (fmt.get_elem_size() as usize);
491 let new_size = pic_sz.unwrap().checked_add(pal_size);
492 if new_size == None { return Err(AllocatorError::TooLargeDimensions); }
493 offs.push(0);
494 offs.push(stride * height);
495 strides.push(stride);
496 let data: Vec<u8> = vec![0; new_size.unwrap()];
497 let buf: NAVideoBuffer<u8> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
498 Ok(NABufferType::Video(buf.into_ref()))
499 } else if !all_packed {
500 for i in 0..fmt.get_num_comp() {
501 let ochr = fmt.get_chromaton(i);
502 if ochr.is_none() { continue; }
503 let chr = ochr.unwrap();
504 offs.push(new_size as usize);
505 let stride = chr.get_linesize(width);
506 let cur_h = chr.get_height(height);
507 let cur_sz = stride.checked_mul(cur_h);
508 if cur_sz == None { return Err(AllocatorError::TooLargeDimensions); }
509 let new_sz = new_size.checked_add(cur_sz.unwrap());
510 if new_sz == None { return Err(AllocatorError::TooLargeDimensions); }
511 new_size = new_sz.unwrap();
512 strides.push(stride);
513 }
514 if max_depth <= 8 {
515 let data: Vec<u8> = vec![0; new_size];
516 let buf: NAVideoBuffer<u8> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
517 Ok(NABufferType::Video(buf.into_ref()))
518 } else if max_depth <= 16 {
519 let data: Vec<u16> = vec![0; new_size];
520 let buf: NAVideoBuffer<u16> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
521 Ok(NABufferType::Video16(buf.into_ref()))
522 } else {
523 let data: Vec<u32> = vec![0; new_size];
524 let buf: NAVideoBuffer<u32> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
525 Ok(NABufferType::Video32(buf.into_ref()))
526 }
527 } else if all_bytealigned || unfit_elem_size {
528 let elem_sz = fmt.get_elem_size();
529 let line_sz = width.checked_mul(elem_sz as usize);
530 if line_sz == None { return Err(AllocatorError::TooLargeDimensions); }
531 let new_sz = line_sz.unwrap().checked_mul(height);
532 if new_sz == None { return Err(AllocatorError::TooLargeDimensions); }
533 new_size = new_sz.unwrap();
534 let data: Vec<u8> = vec![0; new_size];
535 strides.push(line_sz.unwrap());
536 let buf: NAVideoBuffer<u8> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
537 Ok(NABufferType::VideoPacked(buf.into_ref()))
538 } else {
539 let elem_sz = fmt.get_elem_size();
540 let new_sz = width.checked_mul(height);
541 if new_sz == None { return Err(AllocatorError::TooLargeDimensions); }
542 new_size = new_sz.unwrap();
543 match elem_sz {
544 2 => {
545 let data: Vec<u16> = vec![0; new_size];
546 strides.push(width);
547 let buf: NAVideoBuffer<u16> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
548 Ok(NABufferType::Video16(buf.into_ref()))
549 },
550 4 => {
551 let data: Vec<u32> = vec![0; new_size];
552 strides.push(width);
553 let buf: NAVideoBuffer<u32> = NAVideoBuffer { data: NABufferRef::new(data), info: vinfo, offs, strides };
554 Ok(NABufferType::Video32(buf.into_ref()))
555 },
556 _ => unreachable!(),
557 }
558 }
559 }
560
561 /// Constructs a new audio buffer for the requested format and length.
562 #[allow(clippy::collapsible_if)]
563 pub fn alloc_audio_buffer(ainfo: NAAudioInfo, nsamples: usize, chmap: NAChannelMap) -> Result<NABufferType, AllocatorError> {
564 let mut offs: Vec<usize> = Vec::new();
565 if ainfo.format.is_planar() || (ainfo.channels == 1 && (ainfo.format.get_bits() % 8) == 0) {
566 let len = nsamples.checked_mul(ainfo.channels as usize);
567 if len == None { return Err(AllocatorError::TooLargeDimensions); }
568 let length = len.unwrap();
569 let stride = nsamples;
570 for i in 0..ainfo.channels {
571 offs.push((i as usize) * stride);
572 }
573 if ainfo.format.is_float() {
574 if ainfo.format.get_bits() == 32 {
575 let data: Vec<f32> = vec![0.0; length];
576 let buf: NAAudioBuffer<f32> = NAAudioBuffer { data: NABufferRef::new(data), info: ainfo, offs, chmap, len: nsamples, stride };
577 Ok(NABufferType::AudioF32(buf))
578 } else {
579 Err(AllocatorError::TooLargeDimensions)
580 }
581 } else {
582 if ainfo.format.get_bits() == 8 && !ainfo.format.is_signed() {
583 let data: Vec<u8> = vec![0; length];
584 let buf: NAAudioBuffer<u8> = NAAudioBuffer { data: NABufferRef::new(data), info: ainfo, offs, chmap, len: nsamples, stride };
585 Ok(NABufferType::AudioU8(buf))
586 } else if ainfo.format.get_bits() == 16 && ainfo.format.is_signed() {
587 let data: Vec<i16> = vec![0; length];
588 let buf: NAAudioBuffer<i16> = NAAudioBuffer { data: NABufferRef::new(data), info: ainfo, offs, chmap, len: nsamples, stride };
589 Ok(NABufferType::AudioI16(buf))
590 } else {
591 Err(AllocatorError::TooLargeDimensions)
592 }
593 }
594 } else {
595 let len = nsamples.checked_mul(ainfo.channels as usize);
596 if len == None { return Err(AllocatorError::TooLargeDimensions); }
597 let length = ainfo.format.get_audio_size(len.unwrap() as u64);
598 let data: Vec<u8> = vec![0; length];
599 let buf: NAAudioBuffer<u8> = NAAudioBuffer { data: NABufferRef::new(data), info: ainfo, offs, chmap, len: nsamples, stride: 0 };
600 Ok(NABufferType::AudioPacked(buf))
601 }
602 }
603
604 /// Constructs a new buffer for generic data.
605 pub fn alloc_data_buffer(size: usize) -> Result<NABufferType, AllocatorError> {
606 let data: Vec<u8> = vec![0; size];
607 let buf: NABufferRef<Vec<u8>> = NABufferRef::new(data);
608 Ok(NABufferType::Data(buf))
609 }
610
611 /// Creates a clone of current buffer.
612 pub fn copy_buffer(buf: NABufferType) -> NABufferType {
613 buf.clone()
614 }
615
616 /// Video frame pool.
617 ///
618 /// This structure allows codec to effectively reuse old frames instead of allocating and de-allocating frames every time.
619 /// Caller can also reserve some frames for its own purposes e.g. display queue.
620 pub struct NAVideoBufferPool<T:Copy> {
621 pool: Vec<NAVideoBufferRef<T>>,
622 max_len: usize,
623 add_len: usize,
624 }
625
626 impl<T:Copy> NAVideoBufferPool<T> {
627 /// Constructs a new `NAVideoBufferPool` instance.
628 pub fn new(max_len: usize) -> Self {
629 Self {
630 pool: Vec::with_capacity(max_len),
631 max_len,
632 add_len: 0,
633 }
634 }
635 /// Sets the number of buffers reserved for the user.
636 pub fn set_dec_bufs(&mut self, add_len: usize) {
637 self.add_len = add_len;
638 }
639 /// Returns an unused buffer from the pool.
640 pub fn get_free(&mut self) -> Option<NAVideoBufferRef<T>> {
641 for e in self.pool.iter() {
642 if e.get_num_refs() == 1 {
643 return Some(e.clone());
644 }
645 }
646 None
647 }
648 /// Clones provided frame data into a free pool frame.
649 pub fn get_copy(&mut self, rbuf: &NAVideoBufferRef<T>) -> Option<NAVideoBufferRef<T>> {
650 let mut dbuf = self.get_free()?;
651 dbuf.data.copy_from_slice(&rbuf.data);
652 Some(dbuf)
653 }
654 /// Clears the pool from all frames.
655 pub fn reset(&mut self) {
656 self.pool.truncate(0);
657 }
658 }
659
660 impl NAVideoBufferPool<u8> {
661 /// Allocates the target amount of video frames using [`alloc_video_buffer`].
662 ///
663 /// [`alloc_video_buffer`]: ./fn.alloc_video_buffer.html
664 pub fn prealloc_video(&mut self, vinfo: NAVideoInfo, align: u8) -> Result<(), AllocatorError> {
665 let nbufs = self.max_len + self.add_len - self.pool.len();
666 for _ in 0..nbufs {
667 let vbuf = alloc_video_buffer(vinfo, align)?;
668 if let NABufferType::Video(buf) = vbuf {
669 self.pool.push(buf);
670 } else if let NABufferType::VideoPacked(buf) = vbuf {
671 self.pool.push(buf);
672 } else {
673 return Err(AllocatorError::FormatError);
674 }
675 }
676 Ok(())
677 }
678 }
679
680 impl NAVideoBufferPool<u16> {
681 /// Allocates the target amount of video frames using [`alloc_video_buffer`].
682 ///
683 /// [`alloc_video_buffer`]: ./fn.alloc_video_buffer.html
684 pub fn prealloc_video(&mut self, vinfo: NAVideoInfo, align: u8) -> Result<(), AllocatorError> {
685 let nbufs = self.max_len + self.add_len - self.pool.len();
686 for _ in 0..nbufs {
687 let vbuf = alloc_video_buffer(vinfo, align)?;
688 if let NABufferType::Video16(buf) = vbuf {
689 self.pool.push(buf);
690 } else {
691 return Err(AllocatorError::FormatError);
692 }
693 }
694 Ok(())
695 }
696 }
697
698 impl NAVideoBufferPool<u32> {
699 /// Allocates the target amount of video frames using [`alloc_video_buffer`].
700 ///
701 /// [`alloc_video_buffer`]: ./fn.alloc_video_buffer.html
702 pub fn prealloc_video(&mut self, vinfo: NAVideoInfo, align: u8) -> Result<(), AllocatorError> {
703 let nbufs = self.max_len + self.add_len - self.pool.len();
704 for _ in 0..nbufs {
705 let vbuf = alloc_video_buffer(vinfo, align)?;
706 if let NABufferType::Video32(buf) = vbuf {
707 self.pool.push(buf);
708 } else {
709 return Err(AllocatorError::FormatError);
710 }
711 }
712 Ok(())
713 }
714 }
715
716 /// Information about codec contained in a stream.
717 #[allow(dead_code)]
718 #[derive(Clone)]
719 pub struct NACodecInfo {
720 name: &'static str,
721 properties: NACodecTypeInfo,
722 extradata: Option<Arc<Vec<u8>>>,
723 }
724
725 /// A specialised type for reference-counted `NACodecInfo`.
726 pub type NACodecInfoRef = Arc<NACodecInfo>;
727
728 impl NACodecInfo {
729 /// Constructs a new instance of `NACodecInfo`.
730 pub fn new(name: &'static str, p: NACodecTypeInfo, edata: Option<Vec<u8>>) -> Self {
731 let extradata = match edata {
732 None => None,
733 Some(vec) => Some(Arc::new(vec)),
734 };
735 NACodecInfo { name, properties: p, extradata }
736 }
737 /// Constructs a new reference-counted instance of `NACodecInfo`.
738 pub fn new_ref(name: &'static str, p: NACodecTypeInfo, edata: Option<Arc<Vec<u8>>>) -> Self {
739 NACodecInfo { name, properties: p, extradata: edata }
740 }
741 /// Converts current instance into a reference-counted one.
742 pub fn into_ref(self) -> NACodecInfoRef { Arc::new(self) }
743 /// Returns codec information.
744 pub fn get_properties(&self) -> NACodecTypeInfo { self.properties }
745 /// Returns additional initialisation data required by the codec.
746 pub fn get_extradata(&self) -> Option<Arc<Vec<u8>>> {
747 if let Some(ref vec) = self.extradata { return Some(vec.clone()); }
748 None
749 }
750 /// Returns codec name.
751 pub fn get_name(&self) -> &'static str { self.name }
752 /// Reports whether it is a video codec.
753 pub fn is_video(&self) -> bool {
754 if let NACodecTypeInfo::Video(_) = self.properties { return true; }
755 false
756 }
757 /// Reports whether it is an audio codec.
758 pub fn is_audio(&self) -> bool {
759 if let NACodecTypeInfo::Audio(_) = self.properties { return true; }
760 false
761 }
762 /// Constructs a new empty reference-counted instance of `NACodecInfo`.
763 pub fn new_dummy() -> Arc<Self> {
764 Arc::new(DUMMY_CODEC_INFO)
765 }
766 /// Updates codec infomation.
767 pub fn replace_info(&self, p: NACodecTypeInfo) -> Arc<Self> {
768 Arc::new(NACodecInfo { name: self.name, properties: p, extradata: self.extradata.clone() })
769 }
770 }
771
772 impl Default for NACodecInfo {
773 fn default() -> Self { DUMMY_CODEC_INFO }
774 }
775
776 impl fmt::Display for NACodecInfo {
777 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
778 let edata = match self.extradata.clone() {
779 None => "no extradata".to_string(),
780 Some(v) => format!("{} byte(s) of extradata", v.len()),
781 };
782 write!(f, "{}: {} {}", self.name, self.properties, edata)
783 }
784 }
785
786 /// Default empty codec information.
787 pub const DUMMY_CODEC_INFO: NACodecInfo = NACodecInfo {
788 name: "none",
789 properties: NACodecTypeInfo::None,
790 extradata: None };
791
792 /// A list of accepted option values.
793 #[derive(Debug,Clone)]
794 pub enum NAValue {
795 /// Empty value.
796 None,
797 /// Integer value.
798 Int(i32),
799 /// Long integer value.
800 Long(i64),
801 /// String value.
802 String(String),
803 /// Binary data value.
804 Data(Arc<Vec<u8>>),
805 }
806
807 /// A list of recognized frame types.
808 #[derive(Debug,Clone,Copy,PartialEq)]
809 #[allow(dead_code)]
810 pub enum FrameType {
811 /// Intra frame type.
812 I,
813 /// Inter frame type.
814 P,
815 /// Bidirectionally predicted frame.
816 B,
817 /// Skip frame.
818 ///
819 /// When such frame is encountered then last frame should be used again if it is needed.
820 Skip,
821 /// Some other frame type.
822 Other,
823 }
824
825 impl fmt::Display for FrameType {
826 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
827 match *self {
828 FrameType::I => write!(f, "I"),
829 FrameType::P => write!(f, "P"),
830 FrameType::B => write!(f, "B"),
831 FrameType::Skip => write!(f, "skip"),
832 FrameType::Other => write!(f, "x"),
833 }
834 }
835 }
836
837 /// Timestamp information.
838 #[derive(Debug,Clone,Copy)]
839 pub struct NATimeInfo {
840 /// Presentation timestamp.
841 pub pts: Option<u64>,
842 /// Decode timestamp.
843 pub dts: Option<u64>,
844 /// Duration (in timebase units).
845 pub duration: Option<u64>,
846 /// Timebase numerator.
847 pub tb_num: u32,
848 /// Timebase denominator.
849 pub tb_den: u32,
850 }
851
852 impl NATimeInfo {
853 /// Constructs a new `NATimeInfo` instance.
854 pub fn new(pts: Option<u64>, dts: Option<u64>, duration: Option<u64>, tb_num: u32, tb_den: u32) -> Self {
855 NATimeInfo { pts, dts, duration, tb_num, tb_den }
856 }
857 /// Returns presentation timestamp.
858 pub fn get_pts(&self) -> Option<u64> { self.pts }
859 /// Returns decoding timestamp.
860 pub fn get_dts(&self) -> Option<u64> { self.dts }
861 /// Returns duration.
862 pub fn get_duration(&self) -> Option<u64> { self.duration }
863 /// Sets new presentation timestamp.
864 pub fn set_pts(&mut self, pts: Option<u64>) { self.pts = pts; }
865 /// Sets new decoding timestamp.
866 pub fn set_dts(&mut self, dts: Option<u64>) { self.dts = dts; }
867 /// Sets new duration.
868 pub fn set_duration(&mut self, dur: Option<u64>) { self.duration = dur; }
869
870 /// Converts time in given scale into timestamp in given base.
871 pub fn time_to_ts(time: u64, base: u64, tb_num: u32, tb_den: u32) -> u64 {
872 let tb_num = tb_num as u64;
873 let tb_den = tb_den as u64;
874 let tmp = time.checked_mul(tb_num);
875 if let Some(tmp) = tmp {
876 tmp / base / tb_den
877 } else {
878 let tmp = time.checked_mul(tb_num);
879 if let Some(tmp) = tmp {
880 tmp / base / tb_den
881 } else {
882 let coarse = time / base;
883 let tmp = coarse.checked_mul(tb_num);
884 if let Some(tmp) = tmp {
885 tmp / tb_den
886 } else {
887 (coarse / tb_den) * tb_num
888 }
889 }
890 }
891 }
892 /// Converts timestamp in given base into time in given scale.
893 pub fn ts_to_time(ts: u64, base: u64, tb_num: u32, tb_den: u32) -> u64 {
894 let tb_num = tb_num as u64;
895 let tb_den = tb_den as u64;
896 let tmp = ts.checked_mul(base);
897 if let Some(tmp) = tmp {
898 let tmp2 = tmp.checked_mul(tb_num);
899 if let Some(tmp2) = tmp2 {
900 tmp2 / tb_den
901 } else {
902 (tmp / tb_den) * tb_num
903 }
904 } else {
905 let tmp = ts.checked_mul(tb_num);
906 if let Some(tmp) = tmp {
907 (tmp / tb_den) * base
908 } else {
909 (ts / tb_den) * base * tb_num
910 }
911 }
912 }
913 }
914
915 /// Decoded frame information.
916 #[allow(dead_code)]
917 #[derive(Clone)]
918 pub struct NAFrame {
919 /// Frame timestamp.
920 pub ts: NATimeInfo,
921 /// Frame ID.
922 pub id: i64,
923 buffer: NABufferType,
924 info: NACodecInfoRef,
925 /// Frame type.
926 pub frame_type: FrameType,
927 /// Keyframe flag.
928 pub key: bool,
929 // options: HashMap<String, NAValue>,
930 }
931
932 /// A specialised type for reference-counted `NAFrame`.
933 pub type NAFrameRef = Arc<NAFrame>;
934
935 fn get_plane_size(info: &NAVideoInfo, idx: usize) -> (usize, usize) {
936 let chromaton = info.get_format().get_chromaton(idx);
937 if chromaton.is_none() { return (0, 0); }
938 let (hs, vs) = chromaton.unwrap().get_subsampling();
939 let w = (info.get_width() + ((1 << hs) - 1)) >> hs;
940 let h = (info.get_height() + ((1 << vs) - 1)) >> vs;
941 (w, h)
942 }
943
944 impl NAFrame {
945 /// Constructs a new `NAFrame` instance.
946 pub fn new(ts: NATimeInfo,
947 ftype: FrameType,
948 keyframe: bool,
949 info: NACodecInfoRef,
950 /*options: HashMap<String, NAValue>,*/
951 buffer: NABufferType) -> Self {
952 NAFrame { ts, id: 0, buffer, info, frame_type: ftype, key: keyframe/*, options*/ }
953 }
954 /// Returns frame format information.
955 pub fn get_info(&self) -> NACodecInfoRef { self.info.clone() }
956 /// Returns frame type.
957 pub fn get_frame_type(&self) -> FrameType { self.frame_type }
958 /// Reports whether the frame is a keyframe.
959 pub fn is_keyframe(&self) -> bool { self.key }
960 /// Sets new frame type.
961 pub fn set_frame_type(&mut self, ftype: FrameType) { self.frame_type = ftype; }
962 /// Sets keyframe flag.
963 pub fn set_keyframe(&mut self, key: bool) { self.key = key; }
964 /// Returns frame timestamp.
965 pub fn get_time_information(&self) -> NATimeInfo { self.ts }
966 /// Returns frame presentation time.
967 pub fn get_pts(&self) -> Option<u64> { self.ts.get_pts() }
968 /// Returns frame decoding time.
969 pub fn get_dts(&self) -> Option<u64> { self.ts.get_dts() }
970 /// Returns picture ID.
971 pub fn get_id(&self) -> i64 { self.id }
972 /// Returns frame display duration.
973 pub fn get_duration(&self) -> Option<u64> { self.ts.get_duration() }
974 /// Sets new presentation timestamp.
975 pub fn set_pts(&mut self, pts: Option<u64>) { self.ts.set_pts(pts); }
976 /// Sets new decoding timestamp.
977 pub fn set_dts(&mut self, dts: Option<u64>) { self.ts.set_dts(dts); }
978 /// Sets new picture ID.
979 pub fn set_id(&mut self, id: i64) { self.id = id; }
980 /// Sets new duration.
981 pub fn set_duration(&mut self, dur: Option<u64>) { self.ts.set_duration(dur); }
982
983 /// Returns a reference to the frame data.
984 pub fn get_buffer(&self) -> NABufferType { self.buffer.clone() }
985
986 /// Converts current instance into a reference-counted one.
987 pub fn into_ref(self) -> NAFrameRef { Arc::new(self) }
988 }
989
990 impl fmt::Display for NAFrame {
991 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
992 let mut ostr = format!("frame type {}", self.frame_type);
993 if let Some(pts) = self.ts.pts { ostr = format!("{} pts {}", ostr, pts); }
994 if let Some(dts) = self.ts.dts { ostr = format!("{} dts {}", ostr, dts); }
995 if let Some(dur) = self.ts.duration { ostr = format!("{} duration {}", ostr, dur); }
996 if self.key { ostr = format!("{} kf", ostr); }
997 write!(f, "[{}]", ostr)
998 }
999 }
1000
1001 /// A list of possible stream types.
1002 #[derive(Debug,Clone,Copy,PartialEq)]
1003 #[allow(dead_code)]
1004 pub enum StreamType {
1005 /// Video stream.
1006 Video,
1007 /// Audio stream.
1008 Audio,
1009 /// Subtitles.
1010 Subtitles,
1011 /// Any data stream (or might be an unrecognized audio/video stream).
1012 Data,
1013 /// Nonexistent stream.
1014 None,
1015 }
1016
1017 impl fmt::Display for StreamType {
1018 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1019 match *self {
1020 StreamType::Video => write!(f, "Video"),
1021 StreamType::Audio => write!(f, "Audio"),
1022 StreamType::Subtitles => write!(f, "Subtitles"),
1023 StreamType::Data => write!(f, "Data"),
1024 StreamType::None => write!(f, "-"),
1025 }
1026 }
1027 }
1028
1029 /// Stream data.
1030 #[allow(dead_code)]
1031 #[derive(Clone)]
1032 pub struct NAStream {
1033 media_type: StreamType,
1034 /// Stream ID.
1035 pub id: u32,
1036 num: usize,
1037 info: NACodecInfoRef,
1038 /// Timebase numerator.
1039 pub tb_num: u32,
1040 /// Timebase denominator.
1041 pub tb_den: u32,
1042 }
1043
1044 /// A specialised reference-counted `NAStream` type.
1045 pub type NAStreamRef = Arc<NAStream>;
1046
1047 /// Downscales the timebase by its greatest common denominator.
1048 pub fn reduce_timebase(tb_num: u32, tb_den: u32) -> (u32, u32) {
1049 if tb_num == 0 { return (tb_num, tb_den); }
1050 if (tb_den % tb_num) == 0 { return (1, tb_den / tb_num); }
1051
1052 let mut a = tb_num;
1053 let mut b = tb_den;
1054
1055 while a != b {
1056 if a > b { a -= b; }
1057 else if b > a { b -= a; }
1058 }
1059
1060 (tb_num / a, tb_den / a)
1061 }
1062
1063 impl NAStream {
1064 /// Constructs a new `NAStream` instance.
1065 pub fn new(mt: StreamType, id: u32, info: NACodecInfo, tb_num: u32, tb_den: u32) -> Self {
1066 let (n, d) = reduce_timebase(tb_num, tb_den);
1067 NAStream { media_type: mt, id, num: 0, info: info.into_ref(), tb_num: n, tb_den: d }
1068 }
1069 /// Returns stream id.
1070 pub fn get_id(&self) -> u32 { self.id }
1071 /// Returns stream type.
1072 pub fn get_media_type(&self) -> StreamType { self.media_type }
1073 /// Returns stream number assigned by demuxer.
1074 pub fn get_num(&self) -> usize { self.num }
1075 /// Sets stream number.
1076 pub fn set_num(&mut self, num: usize) { self.num = num; }
1077 /// Returns codec information.
1078 pub fn get_info(&self) -> NACodecInfoRef { self.info.clone() }
1079 /// Returns stream timebase.
1080 pub fn get_timebase(&self) -> (u32, u32) { (self.tb_num, self.tb_den) }
1081 /// Sets new stream timebase.
1082 pub fn set_timebase(&mut self, tb_num: u32, tb_den: u32) {
1083 let (n, d) = reduce_timebase(tb_num, tb_den);
1084 self.tb_num = n;
1085 self.tb_den = d;
1086 }
1087 /// Converts current instance into a reference-counted one.
1088 pub fn into_ref(self) -> NAStreamRef { Arc::new(self) }
1089 }
1090
1091 impl fmt::Display for NAStream {
1092 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1093 write!(f, "({}#{} @ {}/{} - {})", self.media_type, self.id, self.tb_num, self.tb_den, self.info.get_properties())
1094 }
1095 }
1096
1097 /// Packet with compressed data.
1098 #[allow(dead_code)]
1099 pub struct NAPacket {
1100 stream: NAStreamRef,
1101 /// Packet timestamp.
1102 pub ts: NATimeInfo,
1103 buffer: NABufferRef<Vec<u8>>,
1104 /// Keyframe flag.
1105 pub keyframe: bool,
1106 // options: HashMap<String, NAValue<'a>>,
1107 }
1108
1109 impl NAPacket {
1110 /// Constructs a new `NAPacket` instance.
1111 pub fn new(str: NAStreamRef, ts: NATimeInfo, kf: bool, vec: Vec<u8>) -> Self {
1112 // let mut vec: Vec<u8> = Vec::new();
1113 // vec.resize(size, 0);
1114 NAPacket { stream: str, ts, keyframe: kf, buffer: NABufferRef::new(vec) }
1115 }
1116 /// Returns information about the stream packet belongs to.
1117 pub fn get_stream(&self) -> NAStreamRef { self.stream.clone() }
1118 /// Returns packet timestamp.
1119 pub fn get_time_information(&self) -> NATimeInfo { self.ts }
1120 /// Returns packet presentation timestamp.
1121 pub fn get_pts(&self) -> Option<u64> { self.ts.get_pts() }
1122 /// Returns packet decoding timestamp.
1123 pub fn get_dts(&self) -> Option<u64> { self.ts.get_dts() }
1124 /// Returns packet duration.
1125 pub fn get_duration(&self) -> Option<u64> { self.ts.get_duration() }
1126 /// Reports whether this is a keyframe packet.
1127 pub fn is_keyframe(&self) -> bool { self.keyframe }
1128 /// Returns a reference to packet data.
1129 pub fn get_buffer(&self) -> NABufferRef<Vec<u8>> { self.buffer.clone() }
1130 }
1131
1132 impl Drop for NAPacket {
1133 fn drop(&mut self) {}
1134 }
1135
1136 impl fmt::Display for NAPacket {
1137 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1138 let mut ostr = format!("[pkt for {} size {}", self.stream, self.buffer.len());
1139 if let Some(pts) = self.ts.pts { ostr = format!("{} pts {}", ostr, pts); }
1140 if let Some(dts) = self.ts.dts { ostr = format!("{} dts {}", ostr, dts); }
1141 if let Some(dur) = self.ts.duration { ostr = format!("{} duration {}", ostr, dur); }
1142 if self.keyframe { ostr = format!("{} kf", ostr); }
1143 ostr += "]";
1144 write!(f, "{}", ostr)
1145 }
1146 }
1147
1148 /// A trait for creating `NAFrame` using information from `NAPacket`.
1149 pub trait FrameFromPacket {
1150 /// Creates new frame with metadata from `NAPacket`.
1151 fn new_from_pkt(pkt: &NAPacket, info: NACodecInfoRef, buf: NABufferType) -> NAFrame;
1152 /// Sets frame timestamp from `NAPacket`.
1153 fn fill_timestamps(&mut self, pkt: &NAPacket);
1154 }
1155
1156 impl FrameFromPacket for NAFrame {
1157 fn new_from_pkt(pkt: &NAPacket, info: NACodecInfoRef, buf: NABufferType) -> NAFrame {
1158 NAFrame::new(pkt.ts, FrameType::Other, pkt.keyframe, info, /*HashMap::new(),*/ buf)
1159 }
1160 fn fill_timestamps(&mut self, pkt: &NAPacket) {
1161 self.ts = pkt.get_time_information();
1162 }
1163 }
1164