1 /*
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 
14 namespace webrtc {
15 namespace test {
16 
17 class 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;
36   virtual void TestDecodeWidthHeightSet() = 0;
37 };
38 
39 }  // namespace test
40 }  // namespace webrtc
41 
42 #endif  // API_TEST_SIMULCAST_TEST_FIXTURE_H_
43