Home | History | Annotate | Download | only in media

Lines Matching refs:streams

45 // NOTE: There is no check here for duplicate streams, so check before
47 void AddStream(std::vector<StreamParams>* streams, const StreamParams& stream) {
48 streams->push_back(stream);
115 void MediaStreams::CopyFrom(const MediaStreams& streams) {
116 audio_ = streams.audio_;
117 video_ = streams.video_;
118 data_ = streams.data_;
216 std::vector<StreamParams>* streams,
225 streams->push_back(StreamParams::CreateLegacy(ssrc));
265 std::vector<StreamParams>* streams,
281 streams->push_back(stream);
309 std::vector<StreamParams>* streams,
314 return BadParse("Missing streams element.", error);
320 if (!ParseJingleStream(stream_elem, streams, error)) {
368 void WriteJingleStreams(const std::vector<StreamParams>& streams,
372 for (std::vector<StreamParams>::const_iterator stream = streams.begin();
373 stream != streams.end(); ++stream) {