74 lines
2.5 KiB
C++
74 lines
2.5 KiB
C++
|
|
/*
|
||
|
|
* Copyright 2022 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 "api/test/peerconnection_quality_test_fixture.h"
|
||
|
|
|
||
|
|
#include "absl/types/optional.h"
|
||
|
|
#include "api/array_view.h"
|
||
|
|
|
||
|
|
namespace webrtc {
|
||
|
|
namespace webrtc_pc_e2e {
|
||
|
|
|
||
|
|
using VideoCodecConfig = ::webrtc::webrtc_pc_e2e::
|
||
|
|
PeerConnectionE2EQualityTestFixture::VideoCodecConfig;
|
||
|
|
using VideoSubscription = ::webrtc::webrtc_pc_e2e::
|
||
|
|
PeerConnectionE2EQualityTestFixture::VideoSubscription;
|
||
|
|
|
||
|
|
PeerConnectionE2EQualityTestFixture::VideoSubscription::Resolution::Resolution(
|
||
|
|
size_t width,
|
||
|
|
size_t height,
|
||
|
|
int32_t fps)
|
||
|
|
: width_(width), height_(height), fps_(fps), spec_(Spec::kNone) {}
|
||
|
|
PeerConnectionE2EQualityTestFixture::VideoSubscription::Resolution::Resolution(
|
||
|
|
const VideoConfig& video_config)
|
||
|
|
: width_(video_config.width),
|
||
|
|
height_(video_config.height),
|
||
|
|
fps_(video_config.fps),
|
||
|
|
spec_(Spec::kNone) {}
|
||
|
|
PeerConnectionE2EQualityTestFixture::VideoSubscription::Resolution::Resolution(
|
||
|
|
Spec spec)
|
||
|
|
: width_(0), height_(0), fps_(0), spec_(spec) {}
|
||
|
|
|
||
|
|
bool PeerConnectionE2EQualityTestFixture::VideoSubscription::Resolution::
|
||
|
|
operator==(const Resolution& other) const {
|
||
|
|
if (spec_ != Spec::kNone && spec_ == other.spec_) {
|
||
|
|
// If there is some particular spec set, then it doesn't matter what
|
||
|
|
// values we have in other fields.
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
return width_ == other.width_ && height_ == other.height_ &&
|
||
|
|
fps_ == other.fps_ && spec_ == other.spec_;
|
||
|
|
}
|
||
|
|
|
||
|
|
absl::optional<VideoSubscription::Resolution>
|
||
|
|
PeerConnectionE2EQualityTestFixture::VideoSubscription::GetMaxResolution(
|
||
|
|
rtc::ArrayView<const VideoConfig> video_configs) {
|
||
|
|
if (video_configs.empty()) {
|
||
|
|
return absl::nullopt;
|
||
|
|
}
|
||
|
|
|
||
|
|
VideoSubscription::Resolution max_resolution;
|
||
|
|
for (const VideoConfig& config : video_configs) {
|
||
|
|
if (max_resolution.width() < config.width) {
|
||
|
|
max_resolution.set_width(config.width);
|
||
|
|
}
|
||
|
|
if (max_resolution.height() < config.height) {
|
||
|
|
max_resolution.set_height(config.height);
|
||
|
|
}
|
||
|
|
if (max_resolution.fps() < config.fps) {
|
||
|
|
max_resolution.set_fps(config.fps);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return max_resolution;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace webrtc_pc_e2e
|
||
|
|
} // namespace webrtc
|