async-mp4 0.1.1

Async Mp4 Muxer and Demuxer in pure rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::base_box;
use crate::mp4box::dref::{DrefBox};

base_box! {
    box (b"dinf", Dinf, DinfBox) children {
        dref: DrefBox
    }
}

impl Default for Dinf {
    fn default() -> Self {
        Self {
            dref: Some(DrefBox::default())
        }
    }
}