blob: 5270d133064a0d14928b318ed0b8260e08f4296d [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;
22 virtual void TestPaddingAllStreams() = 0;
23 virtual void TestPaddingTwoStreams() = 0;
24 virtual void TestPaddingTwoStreamsOneMaxedOut() = 0;
25 virtual void TestPaddingOneStream() = 0;
26 virtual void TestPaddingOneStreamTwoMaxedOut() = 0;
27 virtual void TestSendAllStreams() = 0;
28 virtual void TestDisablingStreams() = 0;
29 virtual void TestActiveStreams() = 0;
30 virtual void TestSwitchingToOneStream() = 0;
31 virtual void TestSwitchingToOneOddStream() = 0;
32 virtual void TestSwitchingToOneSmallStream() = 0;
33 virtual void TestSpatioTemporalLayers333PatternEncoder() = 0;
34 virtual void TestSpatioTemporalLayers321PatternEncoder() = 0;
35 virtual void TestStrideEncodeDecode() = 0;
Per Kjellander841c9122018-10-04 18:40:28 +020036 virtual void TestDecodeWidthHeightSet() = 0;
Rasmus Brandt0cedc052018-05-31 12:53:00 +020037};
38
39} // namespace test
40} // namespace webrtc
41
42#endif // API_TEST_SIMULCAST_TEST_FIXTURE_H_