// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/base/bitrate.h" #include "base/check_op.h" #include "base/strings/stringprintf.h" namespace media { // static Bitrate Bitrate::VariableBitrate(uint32_t target_bps, uint32_t peak_bps) { … } // static Bitrate Bitrate::ExternalRateControl() { … } bool Bitrate::operator==(const Bitrate& right) const { … } bool Bitrate::operator!=(const Bitrate& right) const { … } uint32_t Bitrate::peak_bps() const { … } std::string Bitrate::ToString() const { … } } // namespace media