1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
use crate::utils::common::Credentials;
use crate::utils::renderer;
use crate::audio_device::AudioDevice;
use crate::session::{Session, SessionCallbacks};
use crate::subscriber::{Subscriber as OpenTokSubscriber, SubscriberCallbacks};
use crate::video_frame::FramePlane;
use std::sync::{Arc, Mutex};
pub struct Subscriber {
credentials: Credentials,
main_loop: glib::MainLoop,
duration: Option<u64>,
stream_id: Arc<Mutex<Option<String>>>,
ignored_stream_ids: Arc<Mutex<Vec<String>>>,
}
impl Subscriber {
pub fn new(
credentials: Credentials,
duration: Option<u64>,
stream_id: Option<String>,
ignored_stream_ids: Option<Vec<String>>,
) -> Self {
Self {
credentials,
main_loop: glib::MainLoop::new(None, false),
duration,
stream_id: Arc::new(Mutex::new(stream_id)),
ignored_stream_ids: Arc::new(Mutex::new(ignored_stream_ids.unwrap_or_default())),
}
}
pub fn run(&self) -> anyhow::Result<()> {
let renderer: Arc<Mutex<Option<renderer::Renderer>>> = Arc::new(Mutex::new(None));
let renderer_ = renderer.clone();
let renderer__ = renderer.clone();
let audio_device = AudioDevice::get_instance();
audio_device
.lock()
.unwrap()
.set_on_audio_sample_callback(Box::new(move |sample| {
if let Some(renderer) = renderer.lock().unwrap().as_ref() {
renderer.render_audio_sample(sample);
}
}));
let subscriber_callbacks = SubscriberCallbacks::builder()
.on_render_frame(move |_, frame| {
let width = frame.get_width().unwrap() as u32;
let height = frame.get_height().unwrap() as u32;
let get_plane_size = |format, width: u32, height: u32| match format {
FramePlane::Y => width * height,
FramePlane::U | FramePlane::V => {
let pw = (width + 1) >> 1;
let ph = (height + 1) >> 1;
pw * ph
}
_ => unimplemented!(),
};
let offset = [
0,
get_plane_size(FramePlane::Y, width, height) as usize,
get_plane_size(FramePlane::Y, width, height) as usize
+ get_plane_size(FramePlane::U, width, height) as usize,
];
let stride = [
frame.get_plane_stride(FramePlane::Y).unwrap(),
frame.get_plane_stride(FramePlane::U).unwrap(),
frame.get_plane_stride(FramePlane::V).unwrap(),
];
renderer_
.lock()
.unwrap()
.as_ref()
.unwrap()
.push_video_buffer(
frame.get_buffer().unwrap(),
frame.get_format().unwrap(),
width,
height,
&offset,
&stride,
);
})
.on_error(|_, error, _| {
eprintln!("on_error {:?}", error);
})
.build();
let subscriber = Arc::new(OpenTokSubscriber::new(subscriber_callbacks));
let stream_id = self.stream_id.clone();
let ignored_stream_ids = self.ignored_stream_ids.clone();
let session_callbacks = SessionCallbacks::builder()
.on_stream_received(move |session, stream| {
*renderer__.lock().unwrap() = Some(renderer::Renderer::new().unwrap());
println!(
"stream width {:?} height {:?}",
stream.get_video_width(),
stream.get_video_height()
);
if let Some(ref stream_id) = *stream_id.lock().unwrap() {
if stream.id() != *stream_id {
println!("{} is not the stream we want to susbscribe to", stream_id);
return;
}
}
if ignored_stream_ids.lock().unwrap().contains(&stream.id()) {
println!("Ignoring stream {}", stream.id());
return;
}
if subscriber.set_stream(stream).is_ok() {
if let Err(e) = session.subscribe(&subscriber) {
eprintln!("Could not subscribe to session {:?}", e);
}
}
})
.on_error(|_, error, _| {
eprintln!("on_error {:?}", error);
})
.build();
let session = Session::new(
&self.credentials.api_key,
&self.credentials.session_id,
session_callbacks,
)?;
session.connect(&self.credentials.token)?;
if let Some(duration) = self.duration {
let main_loop = self.main_loop.clone();
std::thread::spawn(move || {
std::thread::sleep(std::time::Duration::from_secs(duration));
main_loop.quit();
});
}
self.main_loop.run();
session.disconnect().unwrap();
Ok(())
}
pub fn stop(&self) {
self.main_loop.quit();
}
}