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

Fix formatting error and erroneous dbg message

This commit is contained in:
Jensenn 2023-09-20 12:20:22 -06:00
parent 943c012d2c
commit fb694a602f
2 changed files with 2 additions and 3 deletions

View file

@ -79,9 +79,9 @@ pub(crate) mod data;
pub(crate) mod dinf;
pub(crate) mod edts;
pub(crate) mod elst;
pub(crate) mod emsg;
pub(crate) mod enca;
pub(crate) mod encv;
pub(crate) mod emsg;
pub(crate) mod frma;
pub(crate) mod ftyp;
pub(crate) mod hdlr;
@ -133,9 +133,9 @@ pub use data::DataBox;
pub use dinf::DinfBox;
pub use edts::EdtsBox;
pub use elst::ElstBox;
pub use emsg::EmsgBox;
pub use enca::EncaBox;
pub use encv::EncvBox;
pub use emsg::EmsgBox;
pub use frma::FrmaBox;
pub use ftyp::FtypBox;
pub use hdlr::HdlrBox;

View file

@ -102,7 +102,6 @@ impl<R: Read + Seek> ReadBox<&mut R> for SinfBox {
impl<W: Write> WriteBox<&mut W> for SinfBox {
fn write_box(&self, writer: &mut W) -> Result<u64> {
let size = self.box_size();
println!("sinf size: {}", size);
BoxHeader::new(self.box_type(), size).write(writer)?;