1use crate::base_box;
2use crate::mp4box::dref::{DrefBox};
3
4base_box! {
5 box (b"dinf", Dinf, DinfBox) children {
6 dref: DrefBox
7 }
8}
9
10impl Default for Dinf {
11 fn default() -> Self {
12 Self {
13 dref: Some(DrefBox::default())
14 }
15 }
16}