Skip to content

Commit

Permalink
Clarify limitations of the current design (one stream per type)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferjm committed May 28, 2019
1 parent 5219989 commit 3df90cf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backends/gstreamer/media_stream_source.rs
Expand Up @@ -53,7 +53,12 @@ mod imp {
src: &gst::Element,
only_stream: bool,
) {
// XXXferjm remove previous stream for the given type.
// XXXferjm the current design limits the number of streams to one
// per type. This fulfills the basic use case for WebRTC, but we should
// implement support for multiple streams per type at some point, which
// likely involves encoding and muxing all streams of the same type
// in a single stream.

gst_log!(self.cat, "Setting stream");

// Append a proxysink to the media stream pipeline.
Expand Down

0 comments on commit 3df90cf

Please sign in to comment.