
The purpose is to make the fixture reusable in downstream projects. The CL adds the following things to API: - api/test/video_quality_test_fixture.h - api/test/create_video_quality_test_fixture.h The following things are moved to API: - call/bitrate_constraints.h (api/bitrate_constraints.h) - call/simulated_network.h (api/test/simulated_network.h) - call/media_type.h (api/mediatypes.h) These are required by the params struct passed to the fixture. I didn't attempt to split the params struct into an internal-only and public version in this CL, and as a result we need to pull in the above things. They are quite harmless though, so I think it's worth it in order to avoid splitting up the test config struct. This CL doesn't solve all the problems we need to implement downstream tests; we probably need to upstream tracing variants of FakeNetworkPipe for instance, but that will come later. This puts in place the basic structure for now. Bug: None Change-Id: I35e26ed126fad27bc7b2a465400291084f6ac911 Reviewed-on: https://webrtc-review.googlesource.com/69601 Commit-Queue: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Fredrik Solenberg <solenberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23714}
131 lines
4.4 KiB
C++
131 lines
4.4 KiB
C++
/*
|
|
* Copyright (c) 2015 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 VIDEO_VIDEO_QUALITY_TEST_H_
|
|
#define VIDEO_VIDEO_QUALITY_TEST_H_
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "api/fec_controller.h"
|
|
#include "api/test/video_quality_test_fixture.h"
|
|
#include "call/fake_network_pipe.h"
|
|
#include "media/engine/internalencoderfactory.h"
|
|
#include "test/call_test.h"
|
|
#include "test/frame_generator.h"
|
|
#include "test/layer_filtering_transport.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class VideoQualityTest :
|
|
public test::CallTest, public VideoQualityTestFixtureInterface {
|
|
public:
|
|
explicit VideoQualityTest(
|
|
std::unique_ptr<FecControllerFactoryInterface> fec_controller_factory);
|
|
|
|
void RunWithAnalyzer(const Params& params) override;
|
|
void RunWithRenderers(const Params& params) override;
|
|
|
|
const std::map<uint8_t, webrtc::MediaType>& payload_type_map() override {
|
|
return payload_type_map_;
|
|
}
|
|
|
|
static void FillScalabilitySettings(
|
|
Params* params,
|
|
size_t video_idx,
|
|
const std::vector<std::string>& stream_descriptors,
|
|
int num_streams,
|
|
size_t selected_stream,
|
|
int num_spatial_layers,
|
|
int selected_sl,
|
|
InterLayerPredMode inter_layer_pred,
|
|
const std::vector<std::string>& sl_descriptors);
|
|
|
|
// Helper static methods.
|
|
static VideoStream DefaultVideoStream(const Params& params, size_t video_idx);
|
|
static VideoStream DefaultThumbnailStream();
|
|
static std::vector<int> ParseCSV(const std::string& str);
|
|
|
|
protected:
|
|
class TestVideoEncoderFactory : public VideoEncoderFactory {
|
|
std::vector<SdpVideoFormat> GetSupportedFormats() const override;
|
|
|
|
CodecInfo QueryVideoEncoder(const SdpVideoFormat& format) const override;
|
|
|
|
std::unique_ptr<VideoEncoder> CreateVideoEncoder(
|
|
const SdpVideoFormat& format) override;
|
|
|
|
private:
|
|
InternalEncoderFactory internal_encoder_factory_;
|
|
};
|
|
|
|
std::map<uint8_t, webrtc::MediaType> payload_type_map_;
|
|
std::unique_ptr<FecControllerFactoryInterface> fec_controller_factory_;
|
|
|
|
// No-op implementation to be able to instantiate this class from non-TEST_F
|
|
// locations.
|
|
void TestBody() override;
|
|
|
|
// Helper methods accessing only params_.
|
|
std::string GenerateGraphTitle() const;
|
|
void CheckParams();
|
|
|
|
// Helper methods for setting up the call.
|
|
void CreateVideoStreams();
|
|
void DestroyStreams();
|
|
void CreateCapturers();
|
|
std::unique_ptr<test::FrameGenerator> CreateFrameGenerator(size_t video_idx);
|
|
void SetupThumbnailCapturers(size_t num_thumbnail_streams);
|
|
void SetupVideo(Transport* send_transport, Transport* recv_transport);
|
|
void SetupThumbnails(Transport* send_transport, Transport* recv_transport);
|
|
void DestroyThumbnailStreams();
|
|
void SetupAudio(Transport* transport,
|
|
AudioReceiveStream** audio_receive_stream);
|
|
|
|
void StartEncodedFrameLogs(VideoSendStream* stream);
|
|
void StartEncodedFrameLogs(VideoReceiveStream* stream);
|
|
|
|
virtual std::unique_ptr<test::LayerFilteringTransport> CreateSendTransport();
|
|
virtual std::unique_ptr<test::DirectTransport> CreateReceiveTransport();
|
|
|
|
std::vector<std::unique_ptr<test::VideoCapturer>> video_capturers_;
|
|
std::vector<std::unique_ptr<test::VideoCapturer>> thumbnail_capturers_;
|
|
TestVideoEncoderFactory video_encoder_factory_;
|
|
|
|
std::vector<VideoSendStream::Config> thumbnail_send_configs_;
|
|
std::vector<VideoEncoderConfig> thumbnail_encoder_configs_;
|
|
std::vector<VideoSendStream*> thumbnail_send_streams_;
|
|
std::vector<VideoReceiveStream::Config> thumbnail_receive_configs_;
|
|
std::vector<VideoReceiveStream*> thumbnail_receive_streams_;
|
|
|
|
std::vector<VideoSendStream::Config> video_send_configs_;
|
|
std::vector<VideoEncoderConfig> video_encoder_configs_;
|
|
std::vector<VideoSendStream*> video_send_streams_;
|
|
|
|
Clock* const clock_;
|
|
|
|
int receive_logs_;
|
|
int send_logs_;
|
|
|
|
DegradationPreference degradation_preference_ =
|
|
DegradationPreference::MAINTAIN_FRAMERATE;
|
|
Params params_;
|
|
|
|
std::unique_ptr<webrtc::RtcEventLog> recv_event_log_;
|
|
std::unique_ptr<webrtc::RtcEventLog> send_event_log_;
|
|
|
|
size_t num_video_streams_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // VIDEO_VIDEO_QUALITY_TEST_H_
|