From c6670baab36efb5359e2aa774409cf025e991b31 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Wed, 29 Jan 2025 14:04:21 +0100 Subject: [PATCH] typos --- crates/utils/re_video/src/decode/ffmpeg_h264/ffmpeg.rs | 2 +- crates/viewer/re_renderer/src/video/player.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/utils/re_video/src/decode/ffmpeg_h264/ffmpeg.rs b/crates/utils/re_video/src/decode/ffmpeg_h264/ffmpeg.rs index cf4fb3a68739..6ce9ed82354d 100644 --- a/crates/utils/re_video/src/decode/ffmpeg_h264/ffmpeg.rs +++ b/crates/utils/re_video/src/decode/ffmpeg_h264/ffmpeg.rs @@ -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 diff --git a/crates/viewer/re_renderer/src/video/player.rs b/crates/viewer/re_renderer/src/video/player.rs index cf2844be67e5..104b4e2bcf9e 100644 --- a/crates/viewer/re_renderer/src/video/player.rs +++ b/crates/viewer/re_renderer/src/video/player.rs @@ -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 {