1 /* 2 * Copyright 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 #include "test/scenario/scenario_config.h" 11 12 namespace webrtc { 13 namespace test { 14 15 TransportControllerConfig::Rates::Rates() = default; 16 TransportControllerConfig::Rates::Rates( 17 const TransportControllerConfig::Rates&) = default; 18 TransportControllerConfig::Rates::~Rates() = default; 19 20 PacketStreamConfig::PacketStreamConfig() = default; 21 PacketStreamConfig::PacketStreamConfig(const PacketStreamConfig&) = default; 22 PacketStreamConfig::~PacketStreamConfig() = default; 23 24 VideoStreamConfig::Encoder::Encoder() = default; 25 VideoStreamConfig::Encoder::Encoder(const VideoStreamConfig::Encoder&) = 26 default; 27 VideoStreamConfig::Encoder::~Encoder() = default; 28 29 VideoStreamConfig::Stream::Stream() = default; 30 VideoStreamConfig::Stream::Stream(const VideoStreamConfig::Stream&) = default; 31 VideoStreamConfig::Stream::~Stream() = default; 32 33 AudioStreamConfig::AudioStreamConfig() = default; 34 AudioStreamConfig::AudioStreamConfig(const AudioStreamConfig&) = default; 35 AudioStreamConfig::~AudioStreamConfig() = default; 36 37 AudioStreamConfig::Encoder::Encoder() = default; 38 AudioStreamConfig::Encoder::Encoder(const AudioStreamConfig::Encoder&) = 39 default; 40 AudioStreamConfig::Encoder::~Encoder() = default; 41 42 AudioStreamConfig::Stream::Stream() = default; 43 AudioStreamConfig::Stream::Stream(const AudioStreamConfig::Stream&) = default; 44 AudioStreamConfig::Stream::~Stream() = default; 45 46 } // namespace test 47 } // namespace webrtc 48