In this reland, I disabled high bitrate webrtc perf test on Android32. This is a reland of 15df2774f4e85cf8900768c1793edcf17d651dcd Original change's description: > This CL adds a fake codec factory in WebRTC that can be used in tests to > produce target bitrate output. > We also add a high bitrate test that makes use of fake codec. This test assumes > ideal network conditions with target bandwidth being available and exercises > WebRTC calls with a high target bitrate(100 Mbps) end-to-end. TBR=sprang@webrtc.org,stefan@webrtc.org,srte@webrtc.org,emircan@webrtc.org,kron@webrtc.org Bug: chromium:879723 Change-Id: I31a4b48d986bef9ca003ae71afeb567ae3e562c9 Reviewed-on: https://webrtc-review.googlesource.com/c/117980 Reviewed-by: Emircan Uysaler <emircan@webrtc.org> Commit-Queue: Emircan Uysaler <emircan@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26285}
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
/*
|
|
* 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 MEDIA_ENGINE_FAKE_VIDEO_CODEC_FACTORY_H_
|
|
#define MEDIA_ENGINE_FAKE_VIDEO_CODEC_FACTORY_H_
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "api/video_codecs/video_decoder_factory.h"
|
|
#include "api/video_codecs/video_encoder_factory.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// Provides a fake video encoder instance that produces frames large enough for
|
|
// the given bitrate constraints.
|
|
class FakeVideoEncoderFactory : public VideoEncoderFactory {
|
|
public:
|
|
FakeVideoEncoderFactory();
|
|
|
|
static std::unique_ptr<VideoEncoder> CreateVideoEncoder();
|
|
|
|
// VideoEncoderFactory implementation
|
|
std::vector<SdpVideoFormat> GetSupportedFormats() const override;
|
|
VideoEncoderFactory::CodecInfo QueryVideoEncoder(
|
|
const SdpVideoFormat& format) const override;
|
|
std::unique_ptr<VideoEncoder> CreateVideoEncoder(
|
|
const SdpVideoFormat& format) override;
|
|
};
|
|
|
|
// Provides a fake video decoder instance that ignores the given bitstream and
|
|
// produces frames.
|
|
class FakeVideoDecoderFactory : public VideoDecoderFactory {
|
|
public:
|
|
FakeVideoDecoderFactory();
|
|
|
|
static std::unique_ptr<VideoDecoder> CreateVideoDecoder();
|
|
|
|
// VideoDecoderFactory implementation
|
|
std::vector<SdpVideoFormat> GetSupportedFormats() const override;
|
|
std::unique_ptr<VideoDecoder> CreateVideoDecoder(
|
|
const SdpVideoFormat& format) override;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MEDIA_ENGINE_FAKE_VIDEO_CODEC_FACTORY_H_
|