Skip to content

Commit

Permalink
fix incomplete rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Nov 12, 2024
1 parent bb47172 commit 55e5aa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/store/re_video/src/decode/ffmpeg_h264/ffmpeg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ impl FFmpegCliH264Decoder {

// TODO(ab): Pass executable path here.
if !ffmpeg_sidecar::command::ffmpeg_is_installed() {
return Err(Error::FfmpegNotInstalled);
return Err(Error::FFmpegNotInstalled);
}

// Check the version once ahead of running FFmpeg.
Expand Down
2 changes: 1 addition & 1 deletion crates/viewer/re_data_ui/src/video.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ pub fn show_decoded_frame_info(
match err.as_ref() {
re_video::decode::FFmpegError::UnsupportedFFmpegVersion { .. }
| re_video::decode::FFmpegError::FailedToDetermineFFmpegVersion(_)
| re_video::decode::FFmpegError::FfmpegNotInstalled => {
| re_video::decode::FFmpegError::FFmpegNotInstalled => {
if let Some(download_url) = re_video::decode::ffmpeg_download_url() {
ui.markdown_ui(&format!("You can download a build of `FFmpeg` [here]({download_url}). For Rerun to be able to use it, its binaries need to be reachable from `PATH`."));
}
Expand Down

0 comments on commit 55e5aa3

Please sign in to comment.