Skip to content

Commit 2093ea6

Browse files
committed
Reduce forward jump threshold in output pipeline
1 parent 4d3f653 commit 2093ea6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/recording/src/output_pipeline

crates/recording/src/output_pipeline/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use tracing::*;
2727

2828
const CONSECUTIVE_ANOMALY_ERROR_THRESHOLD: u64 = 30;
2929
const LARGE_BACKWARD_JUMP_SECS: f64 = 1.0;
30-
const LARGE_FORWARD_JUMP_SECS: f64 = 5.0;
30+
const LARGE_FORWARD_JUMP_SECS: f64 = 0.5;
3131

3232
struct AudioTimestampGenerator {
3333
sample_rate: u32,

0 commit comments

Comments
 (0)