/external/webrtc/pc/ |
D | rtp_receiver.cc | 32 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()
|
D | audio_rtp_receiver.cc | 29 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()
|
D | video_rtp_receiver.cc | 28 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()
|
D | peer_connection_wrapper.cc | 285 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()
|
D | rtp_transmission_manager.cc | 102 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 …]
|
D | peer_connection_wrapper.h | 150 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 = {});
|
D | rtp_receiver.h | 79 virtual void set_stream_ids(std::vector<std::string> stream_ids) = 0; 95 CreateStreamsFromIds(std::vector<std::string> stream_ids);
|
D | rtp_transmission_manager.h | 94 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,
|
D | rtp_sender.h | 65 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;
|
D | audio_rtp_receiver.h | 55 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;
|
D | media_session.h | 58 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,
|
D | video_rtp_receiver.h | 68 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/ |
D | incoming_ssn_reset_request_parameter.cc | 55 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()
|
D | outgoing_ssn_reset_request_parameter.cc | 63 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()
|
D | incoming_ssn_reset_request_parameter.h | 42 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
|
D | outgoing_ssn_reset_request_parameter.h | 46 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/ |
D | integration_test_helpers.cc | 32 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/ |
D | stream_params.cc | 45 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/ |
D | stream_reset_handler_test.cc | 366 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/ |
D | stream_scheduler.cc | 192 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/ |
D | rtp_sender_interface.h | 67 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/ |
D | reconfig_chunk_test.cc | 61 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/ |
D | iommu.c | 285 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/ |
D | test_peer.h | 106 const std::vector<std::string>& stream_ids = {}) { 108 return wrapper_->AddTrack(track, stream_ids);
|
/external/webrtc/net/dcsctp/rx/ |
D | interleaved_reassembly_streams.cc | 217 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()
|