Home | History | Annotate | Download | only in webrtc

Lines Matching refs:stream

36     << "" << func << " - Failed to find stream: " << id
86 PassthroughStream* stream = stream_render_map_.begin()->second;
88 delete stream;
98 // Stream already exist.
100 LOG(LS_ERROR) << "AddIncomingRenderStream - Stream already exists: "
105 PassthroughStream* stream = new PassthroughStream(stream_id);
106 // Store the stream
107 stream_render_map_[stream_id] = stream;
108 return stream;
114 PassthroughStream* stream = FindStream(stream_id);
115 if (stream == NULL) {
119 delete stream;
128 PassthroughStream* stream = FindStream(stream_id);
129 if (stream == NULL) {
133 return stream->SetRenderer(render_object);
147 PassthroughStream* stream = FindStream(stream_id);
148 if (stream == NULL) {
152 return stream->StartRender();
157 PassthroughStream* stream = FindStream(stream_id);
158 if (stream == NULL) {
162 return stream->StopRender();