blob: 9c7ff0c65208c5e7d10604ea6608de8ff7fef11a [file] [log] [blame]
Niels Möller4db138e2018-04-19 07:04:131/*
2 * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef TEST_ENCODER_PROXY_FACTORY_H_
12#define TEST_ENCODER_PROXY_FACTORY_H_
13
14#include <memory>
15#include <vector>
16
17#include "api/video_codecs/video_encoder.h"
18#include "api/video_codecs/video_encoder_factory.h"
19#include "rtc_base/ptr_util.h"
20
21namespace webrtc {
22namespace test {
23
24// An encoder factory with a single underlying VideoEncoder object,
25// intended for test purposes. Each call to CreateVideoEncoder returns
26// a proxy for the same encoder, typically an instance of FakeEncoder.
27class EncoderProxyFactory final : public VideoEncoderFactory {
28 public:
29 explicit EncoderProxyFactory(VideoEncoder* encoder) : encoder_(encoder) {
30 codec_info_.is_hardware_accelerated = false;
31 codec_info_.has_internal_source = false;
32 }
33
34 // Unused by tests.
35 std::vector<SdpVideoFormat> GetSupportedFormats() const override {
36 RTC_NOTREACHED();
37 return {};
38 }
39
40 CodecInfo QueryVideoEncoder(const SdpVideoFormat& format) const override {
41 return codec_info_;
42 }
43
44 std::unique_ptr<VideoEncoder> CreateVideoEncoder(
45 const SdpVideoFormat& format) override {
46 return rtc::MakeUnique<EncoderProxy>(encoder_);
47 }
48
49 void SetIsHardwareAccelerated(bool is_hardware_accelerated) {
50 codec_info_.is_hardware_accelerated = is_hardware_accelerated;
51 }
52 void SetHasInternalSource(bool has_internal_source) {
53 codec_info_.has_internal_source = has_internal_source;
54 }
55
56 private:
57 // Wrapper class, since CreateVideoEncoder needs to surrender
58 // ownership to the object it returns.
59 class EncoderProxy final : public VideoEncoder {
60 public:
61 explicit EncoderProxy(VideoEncoder* encoder) : encoder_(encoder) {}
62
63 private:
64 int32_t Encode(const VideoFrame& input_image,
65 const CodecSpecificInfo* codec_specific_info,
66 const std::vector<FrameType>* frame_types) override {
67 return encoder_->Encode(input_image, codec_specific_info, frame_types);
68 }
69 int32_t InitEncode(const VideoCodec* config,
70 int32_t number_of_cores,
71 size_t max_payload_size) override {
72 return encoder_->InitEncode(config, number_of_cores, max_payload_size);
73 }
74 VideoEncoder::ScalingSettings GetScalingSettings() const override {
75 return encoder_->GetScalingSettings();
76 }
77 int32_t RegisterEncodeCompleteCallback(
78 EncodedImageCallback* callback) override {
79 return encoder_->RegisterEncodeCompleteCallback(callback);
80 }
81 int32_t Release() override { return encoder_->Release(); }
82 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override {
83 return encoder_->SetChannelParameters(packet_loss, rtt);
84 }
85 int32_t SetRateAllocation(const BitrateAllocation& rate_allocation,
86 uint32_t framerate) override {
87 return encoder_->SetRateAllocation(rate_allocation, framerate);
88 }
89 const char* ImplementationName() const override {
90 return encoder_->ImplementationName();
91 }
92
93 VideoEncoder* const encoder_;
94 };
95
96 VideoEncoder* const encoder_;
97 CodecInfo codec_info_;
98};
99
100} // namespace test
101} // namespace webrtc
102
103#endif // TEST_ENCODER_PROXY_FACTORY_H_