blob: c7130d290902ec53f7f0178c2776be4497710081 [file] [log] [blame]
Rasmus Brandt0cedc052018-05-31 12:53:00 +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_SIMULCAST_TEST_FIXTURE_H_
12#define API_TEST_SIMULCAST_TEST_FIXTURE_H_
13
14namespace webrtc {
15namespace test {
16
17class SimulcastTestFixture {
18 public:
19 virtual ~SimulcastTestFixture() = default;
20
21 virtual void TestKeyFrameRequestsOnAllStreams() = 0;
Philipp Hancke279b4b72022-11-30 18:03:41 +010022 virtual void TestKeyFrameRequestsOnSpecificStreams() = 0;
Rasmus Brandt0cedc052018-05-31 12:53:00 +020023 virtual void TestPaddingAllStreams() = 0;
24 virtual void TestPaddingTwoStreams() = 0;
25 virtual void TestPaddingTwoStreamsOneMaxedOut() = 0;
26 virtual void TestPaddingOneStream() = 0;
27 virtual void TestPaddingOneStreamTwoMaxedOut() = 0;
28 virtual void TestSendAllStreams() = 0;
29 virtual void TestDisablingStreams() = 0;
30 virtual void TestActiveStreams() = 0;
31 virtual void TestSwitchingToOneStream() = 0;
32 virtual void TestSwitchingToOneOddStream() = 0;
33 virtual void TestSwitchingToOneSmallStream() = 0;
34 virtual void TestSpatioTemporalLayers333PatternEncoder() = 0;
35 virtual void TestSpatioTemporalLayers321PatternEncoder() = 0;
36 virtual void TestStrideEncodeDecode() = 0;
Per Kjellander841c9122018-10-04 18:40:28 +020037 virtual void TestDecodeWidthHeightSet() = 0;
Per Kjellanderbe0aec22020-09-29 20:00:03 +020038 virtual void
39 TestEncoderInfoForDefaultTemporalLayerProfileHasFpsAllocation() = 0;
Rasmus Brandt0cedc052018-05-31 12:53:00 +020040};
41
42} // namespace test
43} // namespace webrtc
44
45#endif // API_TEST_SIMULCAST_TEST_FIXTURE_H_