blob: ed54076ca3e32d78304a0741ea76c411b8df8ea4 [file] [log] [blame]
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001/*
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 API_TEST_VIDEO_QUALITY_TEST_FIXTURE_H_
12#define API_TEST_VIDEO_QUALITY_TEST_FIXTURE_H_
13
14#include <map>
15#include <memory>
16#include <string>
17#include <vector>
18
19#include "api/bitrate_constraints.h"
20#include "api/mediatypes.h"
21#include "api/test/simulated_network.h"
22#include "api/video_codecs/video_encoder_config.h"
23
24namespace webrtc {
25
26class VideoQualityTestFixtureInterface {
27 public:
28 // Parameters are grouped into smaller structs to make it easier to set
29 // the desired elements and skip unused, using aggregate initialization.
30 // Unfortunately, C++11 (as opposed to C11) doesn't support unnamed structs,
31 // which makes the implementation of VideoQualityTest a bit uglier.
32 struct Params {
33 Params();
34 ~Params();
35 struct CallConfig {
36 bool send_side_bwe;
37 BitrateConstraints call_bitrate_config;
38 int num_thumbnails;
39 // Indicates if secondary_(video|ss|screenshare) structures are used.
40 bool dual_video;
41 } call;
42 struct Video {
43 bool enabled;
44 size_t width;
45 size_t height;
46 int32_t fps;
47 int min_bitrate_bps;
48 int target_bitrate_bps;
49 int max_bitrate_bps;
50 bool suspend_below_min_bitrate;
51 std::string codec;
52 int num_temporal_layers;
53 int selected_tl;
54 int min_transmit_bps;
55 bool ulpfec;
56 bool flexfec;
57 bool automatic_scaling;
58 std::string clip_name; // "Generator" to generate frames instead.
59 size_t capture_device_index;
Emircan Uysaler0823eec2018-07-13 17:10:00 -070060 SdpVideoFormat::Parameters sdp_params;
Patrik Höglundb6b29e02018-06-21 16:58:01 +020061 } video[2];
62 struct Audio {
63 bool enabled;
64 bool sync_video;
65 bool dtx;
henrika255750b2018-08-27 16:13:37 +020066 bool use_real_adm;
Patrik Höglundb6b29e02018-06-21 16:58:01 +020067 } audio;
68 struct Screenshare {
69 bool enabled;
70 bool generate_slides;
71 int32_t slide_change_interval;
72 int32_t scroll_duration;
73 std::vector<std::string> slides;
74 } screenshare[2];
75 struct Analyzer {
76 std::string test_label;
77 double avg_psnr_threshold; // (*)
78 double avg_ssim_threshold; // (*)
79 int test_durations_secs;
80 std::string graph_data_output_filename;
81 std::string graph_title;
82 } analyzer;
Artem Titov7f2eab02018-08-27 12:13:33 +020083 // Deprecated. DO NOT USE. Use config instead. This is not pipe actually,
84 // it is just configuration, that will be passed to default implementation
85 // of simulation layer.
Artem Titove9721f22018-08-16 11:41:44 +020086 DefaultNetworkSimulationConfig pipe;
Artem Titov7f2eab02018-08-27 12:13:33 +020087 // Config for default simulation implementation. May be nullopt in that
88 // case, a default config will be used.
89 absl::optional<DefaultNetworkSimulationConfig> config;
Patrik Höglundb6b29e02018-06-21 16:58:01 +020090 struct SS { // Spatial scalability.
91 std::vector<VideoStream> streams; // If empty, one stream is assumed.
92 size_t selected_stream;
93 int num_spatial_layers;
94 int selected_sl;
95 InterLayerPredMode inter_layer_pred;
96 // If empty, bitrates are generated in VP9Impl automatically.
97 std::vector<SpatialLayer> spatial_layers;
98 // If set, default parameters will be used instead of |streams|.
99 bool infer_streams;
100 } ss[2];
101 struct Logging {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200102 std::string rtc_event_log_name;
103 std::string rtp_dump_name;
104 std::string encoded_frame_base_path;
105 } logging;
106 };
107
108 virtual ~VideoQualityTestFixtureInterface() = default;
109
110 virtual void RunWithAnalyzer(const Params& params) = 0;
111 virtual void RunWithRenderers(const Params& params) = 0;
112
113 virtual const std::map<uint8_t, webrtc::MediaType>& payload_type_map() = 0;
114};
115
116} // namespace webrtc
117
118#endif // API_TEST_VIDEO_QUALITY_TEST_FIXTURE_H_