You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.0 KiB
58 lines
2.0 KiB
/*
|
|
* Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#include "test/pc/e2e/test_peer.h"
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "absl/memory/memory.h"
|
|
#include "api/scoped_refptr.h"
|
|
#include "modules/audio_processing/include/audio_processing.h"
|
|
|
|
namespace webrtc {
|
|
namespace webrtc_pc_e2e {
|
|
|
|
bool TestPeer::AddIceCandidates(
|
|
std::vector<std::unique_ptr<IceCandidateInterface>> candidates) {
|
|
bool success = true;
|
|
for (auto& candidate : candidates) {
|
|
if (!pc()->AddIceCandidate(candidate.get())) {
|
|
std::string candidate_str;
|
|
bool res = candidate->ToString(&candidate_str);
|
|
RTC_CHECK(res);
|
|
RTC_LOG(LS_ERROR) << "Failed to add ICE candidate, candidate_str="
|
|
<< candidate_str;
|
|
success = false;
|
|
} else {
|
|
remote_ice_candidates_.push_back(std::move(candidate));
|
|
}
|
|
}
|
|
return success;
|
|
}
|
|
|
|
TestPeer::TestPeer(
|
|
rtc::scoped_refptr<PeerConnectionFactoryInterface> pc_factory,
|
|
rtc::scoped_refptr<PeerConnectionInterface> pc,
|
|
std::unique_ptr<MockPeerConnectionObserver> observer,
|
|
std::unique_ptr<Params> params,
|
|
std::vector<PeerConfigurerImpl::VideoSource> video_sources,
|
|
rtc::scoped_refptr<AudioProcessing> audio_processing,
|
|
std::unique_ptr<rtc::Thread> worker_thread)
|
|
: worker_thread_(std::move(worker_thread)),
|
|
wrapper_(std::make_unique<PeerConnectionWrapper>(std::move(pc_factory),
|
|
std::move(pc),
|
|
std::move(observer))),
|
|
params_(std::move(params)),
|
|
video_sources_(std::move(video_sources)),
|
|
audio_processing_(audio_processing) {}
|
|
|
|
} // namespace webrtc_pc_e2e
|
|
} // namespace webrtc
|