We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 627f0b9 commit ac124edCopy full SHA for ac124ed
crates/recording/src/studio_recording.rs
@@ -907,13 +907,11 @@ async fn create_segment_pipeline(
907
908
while let Ok((mut frame, timestamp)) = channel.recv() {
909
if let Some(timestamp_tx) = timestamp_tx.take() {
910
- dbg!(×tamp_tx);
911
let _ = timestamp_tx.send(timestamp);
912
}
913
914
let first_timestamp = first_timestamp.get_or_insert(timestamp);
915
916
- dbg!(timestamp);
917
let elapsed = timestamp.duration_since(start_time)
918
- first_timestamp.duration_since(start_time);
919
frame.set_pts(Some((elapsed.as_secs_f64() * rate) as i64));
0 commit comments