Skip to content

Commit 72ca3ac

Browse files
committed
cargo fmt f2d9680
1 parent f2d9680 commit 72ca3ac

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

mp4parse/src/unstable.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,8 @@ pub fn create_sample_table(
250250

251251
let track_offset: i64 = track_offset_time.0;
252252

253-
sample.start_composition = CheckedInteger(
254-
track_offset.checked_add(start_composition_val)?
255-
);
256-
sample.end_composition = CheckedInteger(
257-
track_offset.checked_add(end_composition_val)?
258-
);
253+
sample.start_composition = CheckedInteger(track_offset.checked_add(start_composition_val)?);
254+
sample.end_composition = CheckedInteger(track_offset.checked_add(end_composition_val)?);
259255
sample.start_decode = CheckedInteger(start_decode.0);
260256
}
261257

0 commit comments

Comments
 (0)