2018-04-19 09:04:13 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TEST_FUNCTION_VIDEO_ENCODER_FACTORY_H_
|
|
|
|
|
#define TEST_FUNCTION_VIDEO_ENCODER_FACTORY_H_
|
|
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <utility>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2018-05-31 12:53:00 +02:00
|
|
|
#include "api/video_codecs/sdp_video_format.h"
|
2018-04-19 09:04:13 +02:00
|
|
|
#include "api/video_codecs/video_encoder_factory.h"
|
2018-05-31 12:53:00 +02:00
|
|
|
#include "rtc_base/checks.h"
|
2018-04-19 09:04:13 +02:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
// An encoder factory producing encoders by calling a supplied create
|
|
|
|
|
// function.
|
|
|
|
|
class FunctionVideoEncoderFactory final : public VideoEncoderFactory {
|
|
|
|
|
public:
|
|
|
|
|
explicit FunctionVideoEncoderFactory(
|
|
|
|
|
std::function<std::unique_ptr<VideoEncoder>()> create)
|
2018-07-11 15:00:41 +02:00
|
|
|
: create_([create](const SdpVideoFormat&) { return create(); }) {}
|
|
|
|
|
explicit FunctionVideoEncoderFactory(
|
|
|
|
|
std::function<std::unique_ptr<VideoEncoder>(const SdpVideoFormat&)>
|
|
|
|
|
create)
|
|
|
|
|
: create_(std::move(create)) {}
|
2018-04-19 09:04:13 +02:00
|
|
|
|
|
|
|
|
// Unused by tests.
|
|
|
|
|
std::vector<SdpVideoFormat> GetSupportedFormats() const override {
|
|
|
|
|
RTC_NOTREACHED();
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CodecInfo QueryVideoEncoder(
|
|
|
|
|
const SdpVideoFormat& /* format */) const override {
|
2018-07-11 15:00:41 +02:00
|
|
|
CodecInfo codec_info;
|
|
|
|
|
codec_info.is_hardware_accelerated = false;
|
|
|
|
|
codec_info.has_internal_source = false;
|
|
|
|
|
return codec_info;
|
2018-04-19 09:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<VideoEncoder> CreateVideoEncoder(
|
2018-07-11 15:00:41 +02:00
|
|
|
const SdpVideoFormat& format) override {
|
|
|
|
|
return create_(format);
|
2018-04-19 09:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2018-07-11 15:00:41 +02:00
|
|
|
const std::function<std::unique_ptr<VideoEncoder>(const SdpVideoFormat&)>
|
|
|
|
|
create_;
|
2018-04-19 09:04:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // TEST_FUNCTION_VIDEO_ENCODER_FACTORY_H_
|