1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-05-19 16:58:04 +00:00

cargo fmt

This commit is contained in:
Precision 2023-07-30 16:47:57 +08:00
parent 463a71bcce
commit 09fdedc2d6
3 changed files with 2 additions and 3 deletions

View file

@ -83,7 +83,6 @@ pub use mp4box::{
Mp4Box,
};
mod track;
pub use track::{Mp4Track, TrackConfig};

View file

@ -153,7 +153,7 @@ impl<W: Write> WriteBox<&mut W> for MoovBox {
}
if let Some(gps) = &self.gps {
gps.write_box(writer)?;
}
}
Ok(0)
}
}

View file

@ -2,8 +2,8 @@ use std::collections::HashMap;
use std::io::{Read, Seek};
use std::time::Duration;
use crate::meta::MetaBox;
use crate::gps::GpsBox;
use crate::meta::MetaBox;
use crate::*;
#[derive(Debug)]