Home
last modified time | relevance | path

Searched refs:stream_ids (Results 1 – 25 of 73) sorted by relevance

123

/external/webrtc/pc/
Drtp_receiver.cc32 RtpReceiverInternal::CreateStreamsFromIds(std::vector<std::string> stream_ids) { in CreateStreamsFromIds() argument
34 stream_ids.size()); in CreateStreamsFromIds()
35 for (size_t i = 0; i < stream_ids.size(); ++i) { in CreateStreamsFromIds()
37 rtc::Thread::Current(), MediaStream::Create(std::move(stream_ids[i]))); in CreateStreamsFromIds()
Daudio_rtp_receiver.cc29 std::vector<std::string> stream_ids, in AudioRtpReceiver() argument
34 CreateStreamsFromIds(std::move(stream_ids)), in AudioRtpReceiver()
122 std::vector<std::string> AudioRtpReceiver::stream_ids() const { in stream_ids() function in webrtc::AudioRtpReceiver
124 std::vector<std::string> stream_ids(streams_.size()); in stream_ids() local
126 stream_ids[i] = streams_[i]->id(); in stream_ids()
127 return stream_ids; in stream_ids()
220 void AudioRtpReceiver::set_stream_ids(std::vector<std::string> stream_ids) { in set_stream_ids() argument
222 SetStreams(CreateStreamsFromIds(std::move(stream_ids))); in set_stream_ids()
Dvideo_rtp_receiver.cc28 std::vector<std::string> stream_ids) in VideoRtpReceiver() argument
31 CreateStreamsFromIds(std::move(stream_ids))) {} in VideoRtpReceiver()
55 std::vector<std::string> VideoRtpReceiver::stream_ids() const { in stream_ids() function in webrtc::VideoRtpReceiver
57 std::vector<std::string> stream_ids(streams_.size()); in stream_ids() local
59 stream_ids[i] = streams_[i]->id(); in stream_ids()
60 return stream_ids; in stream_ids()
192 void VideoRtpReceiver::set_stream_ids(std::vector<std::string> stream_ids) { in set_stream_ids() argument
194 SetStreams(CreateStreamsFromIds(std::move(stream_ids))); in set_stream_ids()
Dpeer_connection_wrapper.cc285 const std::vector<std::string>& stream_ids) { in AddTrack() argument
287 pc()->AddTrack(track, stream_ids); in AddTrack()
294 const std::vector<std::string>& stream_ids, in AddTrack() argument
297 pc()->AddTrack(track, stream_ids, init_send_encodings); in AddTrack()
304 const std::vector<std::string>& stream_ids) { in AddAudioTrack() argument
305 return AddTrack(CreateAudioTrack(track_label), stream_ids); in AddAudioTrack()
310 const std::vector<std::string>& stream_ids) { in AddVideoTrack() argument
311 return AddTrack(CreateVideoTrack(track_label), stream_ids); in AddVideoTrack()
Drtp_transmission_manager.cc102 const std::vector<std::string>& stream_ids, in AddTrack() argument
107 ? AddTrackUnifiedPlan(track, stream_ids, init_send_encodings) in AddTrack()
108 : AddTrackPlanB(track, stream_ids, init_send_encodings)); in AddTrack()
114 const std::vector<std::string>& stream_ids, in AddTrackPlanB() argument
117 if (stream_ids.size() > 1u) { in AddTrackPlanB()
122 std::vector<std::string> adjusted_stream_ids = stream_ids; in AddTrackPlanB()
139 new_sender->internal()->stream_ids()[0], track->id()); in AddTrackPlanB()
149 new_sender->internal()->stream_ids()[0], track->id()); in AddTrackPlanB()
160 const std::vector<std::string>& stream_ids, in AddTrackUnifiedPlan() argument
181 transceiver->internal()->sender_internal()->set_stream_ids(stream_ids); in AddTrackUnifiedPlan()
[all …]
Dpeer_connection_wrapper.h150 const std::vector<std::string>& stream_ids = {});
154 const std::vector<std::string>& stream_ids,
161 const std::vector<std::string>& stream_ids = {});
167 const std::vector<std::string>& stream_ids = {});
Drtp_receiver.h79 virtual void set_stream_ids(std::vector<std::string> stream_ids) = 0;
95 CreateStreamsFromIds(std::vector<std::string> stream_ids);
Drtp_transmission_manager.h94 const std::vector<std::string>& stream_ids,
102 const std::vector<std::string>& stream_ids,
221 const std::vector<std::string>& stream_ids,
226 const std::vector<std::string>& stream_ids,
Drtp_sender.h65 virtual void set_stream_ids(const std::vector<std::string>& stream_ids) = 0;
161 std::vector<std::string> stream_ids() const override { in stream_ids() function
165 void set_stream_ids(const std::vector<std::string>& stream_ids) override { in set_stream_ids() argument
166 stream_ids_ = stream_ids; in set_stream_ids()
168 void SetStreams(const std::vector<std::string>& stream_ids) override;
Daudio_rtp_receiver.h55 std::vector<std::string> stream_ids,
80 std::vector<std::string> stream_ids() const override;
104 void set_stream_ids(std::vector<std::string> stream_ids) override;
Dmedia_session.h58 std::vector<std::string> stream_ids; member
77 const std::vector<std::string>& stream_ids);
79 const std::vector<std::string>& stream_ids,
98 const std::vector<std::string>& stream_ids,
Dvideo_rtp_receiver.h68 std::vector<std::string> stream_ids() const override;
94 void set_stream_ids(std::vector<std::string> stream_ids) override;
/external/webrtc/net/dcsctp/packet/parameter/
Dincoming_ssn_reset_request_parameter.cc55 std::vector<StreamID> stream_ids; in Parse() local
56 stream_ids.reserve(stream_count); in Parse()
61 stream_ids.push_back(StreamID(sub_reader.Load16<0>())); in Parse()
65 std::move(stream_ids)); in Parse()
Doutgoing_ssn_reset_request_parameter.cc63 std::vector<StreamID> stream_ids; in Parse() local
64 stream_ids.reserve(stream_count); in Parse()
69 stream_ids.push_back(StreamID(sub_reader.Load16<0>())); in Parse()
74 sender_last_assigned_tsn, std::move(stream_ids)); in Parse()
Dincoming_ssn_reset_request_parameter.h42 std::vector<StreamID> stream_ids) in IncomingSSNResetRequestParameter() argument
44 stream_ids_(std::move(stream_ids)) {} in IncomingSSNResetRequestParameter()
55 rtc::ArrayView<const StreamID> stream_ids() const { return stream_ids_; } in stream_ids() function
Doutgoing_ssn_reset_request_parameter.h46 std::vector<StreamID> stream_ids) in OutgoingSSNResetRequestParameter() argument
50 stream_ids_(std::move(stream_ids)) {} in OutgoingSSNResetRequestParameter()
65 rtc::ArrayView<const StreamID> stream_ids() const { return stream_ids_; } in stream_ids() function
/external/webrtc/pc/test/
Dintegration_test_helpers.cc32 std::vector<std::string> stream_ids; in RemoveSsrcsAndKeepMsids() local
37 stream_ids = first_stream.stream_ids(); in RemoveSsrcsAndKeepMsids()
42 new_stream.set_stream_ids(stream_ids); in RemoveSsrcsAndKeepMsids()
/external/webrtc/media/base/
Dstream_params.cc45 void AppendStreamIds(rtc::ArrayView<const std::string> stream_ids, in AppendStreamIds() argument
49 for (const std::string& stream_id : stream_ids) { in AppendStreamIds()
221 std::vector<std::string> StreamParams::stream_ids() const { in stream_ids() function in cricket::StreamParams
225 void StreamParams::set_stream_ids(const std::vector<std::string>& stream_ids) { in set_stream_ids() argument
226 stream_ids_ = stream_ids; in set_stream_ids()
/external/webrtc/net/dcsctp/socket/
Dstream_reset_handler_test.cc366 EXPECT_THAT(req.stream_ids(), UnorderedElementsAre(StreamID(42))); in TEST_F()
394 EXPECT_THAT(req.stream_ids(), in TEST_F()
519 EXPECT_THAT(req2.stream_ids(), UnorderedElementsAre(kStreamToReset)); in TEST_F()
538 EXPECT_THAT(req1.stream_ids(), UnorderedElementsAre(StreamID(42))); in TEST_F()
543 StreamID stream_ids[] = {StreamID(41), StreamID(43)}; in TEST_F() local
544 handler_->ResetStreams(stream_ids); in TEST_F()
573 EXPECT_THAT(req2.stream_ids(), in TEST_F()
628 StreamID stream_ids[] = {StreamID(41), StreamID(43)}; in TEST_F() local
629 handler_->ResetStreams(stream_ids); in TEST_F()
694 EXPECT_THAT(req.stream_ids(), UnorderedElementsAre(StreamID(42))); in TEST_F()
[all …]
/external/webrtc/net/dcsctp/tx/
Dstream_scheduler.cc192 std::set<StreamID> stream_ids; in ActiveStreamsForTesting() local
194 stream_ids.insert(stream->stream_id()); in ActiveStreamsForTesting()
196 return stream_ids; in ActiveStreamsForTesting()
/external/webrtc/api/
Drtp_sender_interface.h67 virtual std::vector<std::string> stream_ids() const = 0;
72 virtual void SetStreams(const std::vector<std::string>& stream_ids) = 0;
/external/webrtc/net/dcsctp/packet/chunk/
Dreconfig_chunk_test.cc61 EXPECT_THAT(req.stream_ids(), ElementsAre(StreamID(6))); in TEST()
88 EXPECT_THAT(req.stream_ids(), ElementsAre(StreamID(42), StreamID(43))); in TEST()
/external/arm-trusted-firmware/plat/brcm/board/stingray/src/
Diommu.c285 uint16_t *stream_ids; member
413 smmu->stream_ids = NULL; in arm_smmu_create_identity_map()
417 smmu->stream_ids = &paxc_stream_ids[0]; in arm_smmu_create_identity_map()
424 smmu->stream_ids = &crmu_stream_ids[0]; in arm_smmu_create_identity_map()
452 smmu->smr[idx].id = smmu->stream_ids[idx]; in arm_smmu_create_identity_map()
/external/webrtc/test/pc/e2e/
Dtest_peer.h106 const std::vector<std::string>& stream_ids = {}) {
108 return wrapper_->AddTrack(track, stream_ids);
/external/webrtc/net/dcsctp/rx/
Dinterleaved_reassembly_streams.cc217 rtc::ArrayView<const StreamID> stream_ids) { in ResetStreams() argument
218 if (stream_ids.empty()) { in ResetStreams()
223 for (StreamID stream_id : stream_ids) { in ResetStreams()

123