Skip to content

Commit ac124ed

Browse files
committed
remove dbg
1 parent 627f0b9 commit ac124ed

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

crates/recording/src/studio_recording.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,13 +907,11 @@ async fn create_segment_pipeline(
907907

908908
while let Ok((mut frame, timestamp)) = channel.recv() {
909909
if let Some(timestamp_tx) = timestamp_tx.take() {
910-
dbg!(&timestamp_tx);
911910
let _ = timestamp_tx.send(timestamp);
912911
}
913912

914913
let first_timestamp = first_timestamp.get_or_insert(timestamp);
915914

916-
dbg!(timestamp);
917915
let elapsed = timestamp.duration_since(start_time)
918916
- first_timestamp.duration_since(start_time);
919917
frame.set_pts(Some((elapsed.as_secs_f64() * rate) as i64));

0 commit comments

Comments
 (0)