2018-05-04 11:56:55 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-09-17 17:06:18 +02:00
|
|
|
#include <memory>
|
2018-05-04 11:56:55 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "api/test/create_videocodec_test_fixture.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "media/base/media_constants.h"
|
2018-05-04 11:56:55 +02:00
|
|
|
#include "modules/video_coding/codecs/test/objc_codec_factory_helper.h"
|
|
|
|
|
#include "modules/video_coding/codecs/test/videocodec_test_fixture_impl.h"
|
|
|
|
|
#include "test/gtest.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "test/testsupport/file_utils.h"
|
2018-05-04 11:56:55 +02:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
const int kForemanNumFrames = 300;
|
|
|
|
|
|
2018-05-22 13:34:14 +02:00
|
|
|
VideoCodecTestFixture::Config CreateConfig() {
|
|
|
|
|
VideoCodecTestFixture::Config config;
|
2018-05-04 11:56:55 +02:00
|
|
|
config.filename = "foreman_cif";
|
|
|
|
|
config.filepath = ResourcePath(config.filename, "yuv");
|
|
|
|
|
config.num_frames = kForemanNumFrames;
|
|
|
|
|
return config;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<VideoCodecTestFixture> CreateTestFixtureWithConfig(
|
2018-05-22 13:34:14 +02:00
|
|
|
VideoCodecTestFixture::Config config) {
|
2018-05-04 11:56:55 +02:00
|
|
|
auto decoder_factory = CreateObjCDecoderFactory();
|
|
|
|
|
auto encoder_factory = CreateObjCEncoderFactory();
|
|
|
|
|
return CreateVideoCodecTestFixture(config, std::move(decoder_factory),
|
|
|
|
|
std::move(encoder_factory));
|
|
|
|
|
}
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
// TODO(webrtc:9099): Disabled until the issue is fixed.
|
|
|
|
|
// HW codecs don't work on simulators. Only run these tests on device.
|
|
|
|
|
// #if TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR
|
|
|
|
|
// #define MAYBE_TEST TEST
|
|
|
|
|
// #else
|
|
|
|
|
#define MAYBE_TEST(s, name) TEST(s, DISABLED_##name)
|
|
|
|
|
// #endif
|
|
|
|
|
|
|
|
|
|
// TODO(kthelgason): Use RC Thresholds when the internal bitrateAdjuster is no
|
|
|
|
|
// longer in use.
|
2018-05-15 10:56:06 +02:00
|
|
|
MAYBE_TEST(VideoCodecTestVideoToolbox, ForemanCif500kbpsH264CBP) {
|
2018-05-04 11:56:55 +02:00
|
|
|
const auto frame_checker =
|
2019-09-17 17:06:18 +02:00
|
|
|
std::make_unique<VideoCodecTestFixtureImpl::H264KeyframeChecker>();
|
2018-05-22 13:34:14 +02:00
|
|
|
auto config = CreateConfig();
|
2018-05-04 11:56:55 +02:00
|
|
|
config.SetCodecSettings(cricket::kH264CodecName, 1, 1, 1, false, false, false,
|
|
|
|
|
352, 288);
|
|
|
|
|
config.encoded_frame_checker = frame_checker.get();
|
|
|
|
|
auto fixture = CreateTestFixtureWithConfig(config);
|
|
|
|
|
|
2019-01-07 16:54:57 +01:00
|
|
|
std::vector<RateProfile> rate_profiles = {{500, 30, 0}};
|
2018-05-04 11:56:55 +02:00
|
|
|
|
|
|
|
|
std::vector<QualityThresholds> quality_thresholds = {{33, 29, 0.9, 0.82}};
|
|
|
|
|
|
2018-05-25 11:58:44 +02:00
|
|
|
fixture->RunTest(rate_profiles, nullptr, &quality_thresholds, nullptr);
|
2018-05-04 11:56:55 +02:00
|
|
|
}
|
|
|
|
|
|
2018-05-15 10:56:06 +02:00
|
|
|
MAYBE_TEST(VideoCodecTestVideoToolbox, ForemanCif500kbpsH264CHP) {
|
2018-05-04 11:56:55 +02:00
|
|
|
const auto frame_checker =
|
2019-09-17 17:06:18 +02:00
|
|
|
std::make_unique<VideoCodecTestFixtureImpl::H264KeyframeChecker>();
|
2018-05-22 13:34:14 +02:00
|
|
|
auto config = CreateConfig();
|
2021-04-19 09:09:26 +02:00
|
|
|
config.h264_codec_settings.profile = H264Profile::kProfileConstrainedHigh;
|
2018-05-04 11:56:55 +02:00
|
|
|
config.SetCodecSettings(cricket::kH264CodecName, 1, 1, 1, false, false, false,
|
|
|
|
|
352, 288);
|
|
|
|
|
config.encoded_frame_checker = frame_checker.get();
|
|
|
|
|
auto fixture = CreateTestFixtureWithConfig(config);
|
|
|
|
|
|
2019-01-07 16:54:57 +01:00
|
|
|
std::vector<RateProfile> rate_profiles = {{500, 30, 0}};
|
2018-05-04 11:56:55 +02:00
|
|
|
|
|
|
|
|
std::vector<QualityThresholds> quality_thresholds = {{33, 30, 0.91, 0.83}};
|
|
|
|
|
|
2018-05-25 11:58:44 +02:00
|
|
|
fixture->RunTest(rate_profiles, nullptr, &quality_thresholds, nullptr);
|
2018-05-04 11:56:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|