WIP: Use audio support to send live data

This commit is contained in:
Mikayla Maki 2023-06-12 16:46:39 -07:00
parent bbf05c8eac
commit ce3847c9fc
No known key found for this signature in database
4 changed files with 62 additions and 12 deletions

View file

@ -84,7 +84,17 @@ extern "C" {
) -> *const c_void;
fn LKRemoteAudioTrackGetSid(track: *const c_void) -> CFStringRef;
fn LKVideoTrackAddRenderer(track: *const c_void, renderer: *const c_void);
fn LKRemoteAudioTrackStart(
track: *const c_void,
callback: extern "C" fn(*mut c_void, bool),
callback_data: *mut c_void
);
fn LKVideoTrackAddRenderer(
track: *const c_void,
renderer: *const c_void
,
);
fn LKRemoteVideoTrackGetSid(track: *const c_void) -> CFStringRef;
fn LKDisplaySources(
@ -307,7 +317,6 @@ impl Room {
}
}
pub fn remote_audio_track_updates(&self) -> mpsc::UnboundedReceiver<RemoteAudioTrackUpdate> {
let (tx, rx) = mpsc::unbounded();
self.remote_audio_track_subscribers.lock().push(tx);
@ -552,8 +561,25 @@ impl RemoteAudioTrack {
pub fn publisher_id(&self) -> &str {
&self.publisher_id
}
}
pub fn start(&self) -> futures::channel::oneshot::Receiver<bool> {
let (tx, rx) = futures::channel::oneshot::channel();
extern "C" fn on_start(callback_data: *mut c_void, success: bool) {
unsafe {
let tx =
Box::from_raw(callback_data as *mut futures::channel::oneshot::Sender<bool>);
tx.send(success).ok();
}
}
unsafe {
LKRemoteAudioTrackStart(self.native_track, on_start, Box::into_raw(Box::new(tx)) as *mut c_void)
}
rx
}
}
#[derive(Debug)]
pub struct RemoteVideoTrack {
@ -639,7 +665,6 @@ pub enum RemoteAudioTrackUpdate {
Unsubscribed { publisher_id: Sid, track_id: Sid },
}
pub struct MacOSDisplay(*const c_void);
impl MacOSDisplay {

View file

@ -476,6 +476,10 @@ impl RemoteAudioTrack {
pub fn publisher_id(&self) -> &str {
&self.publisher_id
}
pub fn start(&self) -> futures::channel::oneshot::Receiver<bool> {
todo!();
}
}
#[derive(Clone)]