Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chyyran committed Jul 15, 2019
1 parent 8208fcf commit 47f8d95
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mp4parse/src/lib.rs
Expand Up @@ -2498,7 +2498,6 @@ fn read_meta<T: Read>(src: &mut BMFFBox<T>) -> Result<MetadataBox> {
Ok(meta)
}


/// Parse a metadata box inside a udta box
fn read_ilst<T: Read>(src: &mut BMFFBox<T>, meta: &mut MetadataBox) -> Result<()> {
let mut iter = src.box_iter();
Expand Down Expand Up @@ -2627,7 +2626,7 @@ fn read_ilst_multiple_u8_data<T: Read>(src: &mut BMFFBox<T>) -> Result<Vec<Vec<u
fn read_ilst_data<T: Read>(src: &mut BMFFBox<T>) -> Result<Vec<u8>> {
// Skip past the padding bytes
skip(&mut src.content, src.head.offset as usize)?;
let size = src.content.limit() as usize;
let size = src.content.limit() as usize;
read_buf(&mut src.content, size)
}

Expand Down

0 comments on commit 47f8d95

Please sign in to comment.