
Successor to #27779 - in this PR I've applied changes manually, without futzing with if let lifetimes at all. Release Notes: - N/A
38 lines
1.2 KiB
Rust
38 lines
1.2 KiB
Rust
use crate::test;
|
|
|
|
pub(crate) mod participant;
|
|
pub(crate) mod publication;
|
|
pub(crate) mod track;
|
|
|
|
pub type RemoteVideoTrack = track::RemoteVideoTrack;
|
|
pub type RemoteAudioTrack = track::RemoteAudioTrack;
|
|
pub type RemoteTrackPublication = publication::RemoteTrackPublication;
|
|
pub type RemoteParticipant = participant::RemoteParticipant;
|
|
|
|
pub type LocalVideoTrack = track::LocalVideoTrack;
|
|
pub type LocalAudioTrack = track::LocalAudioTrack;
|
|
pub type LocalTrackPublication = publication::LocalTrackPublication;
|
|
pub type LocalParticipant = participant::LocalParticipant;
|
|
|
|
pub type Room = test::Room;
|
|
pub use test::{ConnectionState, ParticipantIdentity, TrackSid};
|
|
|
|
pub struct AudioStream {}
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
pub type RemoteVideoFrame = std::sync::Arc<gpui::RenderImage>;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
#[derive(Clone)]
|
|
pub(crate) struct RemoteVideoFrame {}
|
|
#[cfg(target_os = "macos")]
|
|
impl Into<gpui::SurfaceSource> for RemoteVideoFrame {
|
|
fn into(self) -> gpui::SurfaceSource {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
pub(crate) fn play_remote_video_track(
|
|
_track: &crate::RemoteVideoTrack,
|
|
) -> impl futures::Stream<Item = RemoteVideoFrame> + use<> {
|
|
futures::stream::pending()
|
|
}
|