Skip to content

Commit

Permalink
small step size change for adts dur approximation
Browse files Browse the repository at this point in the history
  • Loading branch information
dedobbin committed Mar 3, 2024
1 parent 6ad7723 commit eef52c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symphonia-codec-aac/src/adts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ fn approximate_frame_count(mut source: &mut MediaSourceStream) -> Result<Option<
}
source.seek_buffered_rev((source.pos() - original_pos) as usize);

let step = total_len / 4;
let step = total_len / 3;
if source.is_seekable() {
let mut new_pos = total_len / 2;

Expand Down

0 comments on commit eef52c3

Please sign in to comment.