aboutsummaryrefslogtreecommitdiffstats
path: root/src/boxes/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/boxes/mod.rs')
-rw-r--r--src/boxes/mod.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/boxes/mod.rs b/src/boxes/mod.rs
new file mode 100644
index 0000000..ce73e5f
--- /dev/null
+++ b/src/boxes/mod.rs
@@ -0,0 +1,38 @@
+mod avc1;
+mod avcc;
+mod co64;
+mod dinf;
+mod dref;
+mod ftyp;
+mod hdlr;
+mod mdhd;
+mod mdia;
+mod mehd;
+mod mfhd;
+mod minf;
+mod moof;
+mod moov;
+mod mvex;
+mod mvhd;
+mod smhd;
+mod stbl;
+mod stsc;
+mod stsd;
+mod stsz;
+mod stts;
+mod tfdt;
+mod tfhd;
+mod tkhd;
+mod traf;
+mod trak;
+mod trex;
+mod trun;
+mod url;
+mod vmhd;
+
+pub use self::{
+ avc1::*, avcc::*, co64::*, dinf::*, dref::*, ftyp::*, hdlr::*, mdhd::*, mdia::*, mehd::*,
+ mfhd::*, minf::*, moof::*, moov::*, mvex::*, mvhd::*, smhd::*, stbl::*, stsc::*, stsd::*,
+ stsz::*, stts::*, tfdt::*, tfhd::*, tkhd::*, traf::*, trak::*, trex::*, trun::*, url::*,
+ vmhd::*,
+};