chromium/third_party/webrtc/pc/simulcast_description.cc

/*
 *  Copyright 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 "pc/simulcast_description.h"

#include "rtc_base/checks.h"

namespace cricket {

SimulcastLayer::SimulcastLayer(absl::string_view rid, bool is_paused)
    :{}

bool SimulcastLayer::operator==(const SimulcastLayer& other) const {}

void SimulcastLayerList::AddLayer(const SimulcastLayer& layer) {}

void SimulcastLayerList::AddLayerWithAlternatives(
    const std::vector<SimulcastLayer>& rids) {}

const std::vector<SimulcastLayer>& SimulcastLayerList::operator[](
    size_t index) const {}

bool SimulcastDescription::empty() const {}

std::vector<SimulcastLayer> SimulcastLayerList::GetAllLayers() const {}

}  // namespace cricket