mxf 0.1.2

Library to read/write following SMPTE 377M (MXF) standard.
Documentation
1
2
3
4
5
6
7
8
9

use std::io::{Read, Seek};
use klv::value::value::DynamicTag;

#[derive(Debug, PartialEq)]
pub struct KlvReader<R: Read + Seek> {
  pub stream: R,
  pub elements: Vec<DynamicTag>
}