From 0df97dce028ac440adeb4748172698634a5dca53 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 29 Aug 2022 11:40:30 -0600 Subject: [PATCH] WIP --- crates/capture/src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/capture/src/main.rs b/crates/capture/src/main.rs index bfa0d03602..59d87b5225 100644 --- a/crates/capture/src/main.rs +++ b/crates/capture/src/main.rs @@ -72,8 +72,6 @@ fn main() { let stream: id = msg_send![stream, initWithFilter: filter configuration: config delegate: nil]; let error: id = nil; let _: () = msg_send![stream, addStreamOutput: output type: 0 sampleHandlerQueue: dispatch_get_main_queue() error: &error]; - println!("Added stream output... error? {}", string_from_objc(msg_send![error, localizedDescription])); - let start_capture_completion = ConcreteBlock::new(move |error: id| { if !error.is_null() { @@ -81,7 +79,7 @@ fn main() { return; } - + println!("starting capture"); }); assert!(!stream.is_null());