Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Jan 29, 2025
1 parent 8570475 commit c6670ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/utils/re_video/src/decode/ffmpeg_h264/ffmpeg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ impl AsyncDecoder for FFmpegCliH264Decoder {

fn min_num_samples_to_enqueue_ahead(&self) -> usize {
// TODO(#8848): On some videos (which??) we need to enqueue more samples, otherwise ffmpeg will not provide us with any frames.
// The observed behavior is that we continously get frames that are 16 frames older than what we enqueued,
// The observed behavior is that we continuously get frames that are 16 frames older than what we enqueued,
// never reaching the frames of all currently enqueued GOPs prior.
// (The same happens with webcodec decoder on Safari for affected videos)
16
Expand Down
2 changes: 1 addition & 1 deletion crates/viewer/re_renderer/src/video/player.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ impl VideoPlayer {
// (note that for large GOPs this is usually irrelevant)
//
// (potentially related to:) TODO(#7327, #7595): We don't necessarily have to enqueue full GOPs always.
// In particulary beyond `requested_gop_idx` this can be overkill.
// In particularly beyond `requested_gop_idx` this can be overkill.
let min_end_sample_idx =
requested_sample_idx + self.chunk_decoder.min_num_samples_to_enqueue_ahead();
loop {
Expand Down

0 comments on commit c6670ba

Please sign in to comment.