tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

simulcast_test_fixture.h (1651B)


      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 TestKeyFrameRequestsOnSpecificStreams() = 0;
     23  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;
     37  virtual void TestDecodeWidthHeightSet() = 0;
     38  virtual void
     39  TestEncoderInfoForDefaultTemporalLayerProfileHasFpsAllocation() = 0;
     40 };
     41 
     42 }  // namespace test
     43 }  // namespace webrtc
     44 
     45 #endif  // API_TEST_SIMULCAST_TEST_FIXTURE_H_