Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
robtfm committed Nov 12, 2024
1 parent 1f46d4e commit 0f03cfa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions crates/av/src/audio_source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,10 @@ fn update_audio(
warn!("seek error: {}", err);
}
} else {
warn!("ignoring ridiculous time offset {} for audio clip `{}`", time, audio_source.0.audio_clip_url);
warn!(
"ignoring ridiculous time offset {} for audio clip `{}`",
time, audio_source.0.audio_clip_url
);
}
}
}
Expand All @@ -184,7 +187,10 @@ fn update_audio(
if time < 1e6 {
new_instance.start_from(time as f64);
} else {
warn!("ignoring ridiculous start time {} for audio clip `{}`", time, audio_source.0.audio_clip_url);
warn!(
"ignoring ridiculous start time {} for audio clip `{}`",
time, audio_source.0.audio_clip_url
);
}
}

Expand Down

0 comments on commit 0f03cfa

Please sign in to comment.