You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/streamer.rs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -197,15 +197,16 @@ impl Media for Streamer {
197
197
&muxer,
198
198
Some(muxer_video_sink_pad.name().as_str()),
199
199
)
200
-
.unwrap();// Video to muxer // TODO (probably overcomlicating): use `link_pad` with sync handler
201
-
// encoder_audio.link_pads(Some(audio_pipeline_source_pad.name().as_str()), &muxer, Some(muxer_audio_sink_pad.name().as_str())).unwrap(); // Audio to muxer // TODO (probably overcomlicating): use `link_pad` with sync handler
200
+
.unwrap();// Video to muxer // TODO (probably overcomplicating): use `link_pad` with sync handler
201
+
202
+
// encoder_audio.link_pads(Some(audio_pipeline_source_pad.name().as_str()), &muxer, Some(muxer_audio_sink_pad.name().as_str())).unwrap(); // Audio to muxer // TODO (probably overcomplicating): use `link_pad` with sync handler
202
203
queue_audio
203
204
.link_pads(
204
205
Some(audio_pipeline_source_pad.name().as_str()),
205
206
&muxer,
206
207
Some(muxer_audio_sink_pad.name().as_str()),
207
208
)
208
-
.unwrap();// Audio to muxer // TODO (probably overcomlicating): use `link_pad` with sync handler
209
+
.unwrap();// Audio to muxer // TODO (probably overcomplicating): use `link_pad` with sync handler
0 commit comments