mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 06:40:43 +01:00

Replaces both BitrateConstraintsMask and PeerConnectionInterface::BitrateParameters. The latter is kept temporarily for backwards compatibility. Bug: None Change-Id: Ibe1d043f2a76e56ff67809774e9c0f5e0ec9e00f Reviewed-on: https://webrtc-review.googlesource.com/74020 Commit-Queue: Niels Moller <nisse@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Sebastian Jansson <srte@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23148}
19 lines
664 B
C++
19 lines
664 B
C++
/*
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "api/transport/bitrate_settings.h"
|
|
|
|
namespace webrtc {
|
|
|
|
BitrateSettings::BitrateSettings() = default;
|
|
BitrateSettings::~BitrateSettings() = default;
|
|
BitrateSettings::BitrateSettings(const BitrateSettings&) = default;
|
|
|
|
} // namespace webrtc
|