chromium/third_party/webrtc/modules/rtp_rtcp/source/rtp_generic_frame_descriptor.cc

/*
 *  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 "modules/rtp_rtcp/source/rtp_generic_frame_descriptor.h"

#include <cstdint>

#include "rtc_base/checks.h"

namespace webrtc {

constexpr int RtpGenericFrameDescriptor::kMaxNumFrameDependencies;
constexpr int RtpGenericFrameDescriptor::kMaxTemporalLayers;
constexpr int RtpGenericFrameDescriptor::kMaxSpatialLayers;

RtpGenericFrameDescriptor::RtpGenericFrameDescriptor() = default;
RtpGenericFrameDescriptor::RtpGenericFrameDescriptor(
    const RtpGenericFrameDescriptor&) = default;
RtpGenericFrameDescriptor::~RtpGenericFrameDescriptor() = default;

int RtpGenericFrameDescriptor::TemporalLayer() const {}

void RtpGenericFrameDescriptor::SetTemporalLayer(int temporal_layer) {}

int RtpGenericFrameDescriptor::SpatialLayer() const {}

uint8_t RtpGenericFrameDescriptor::SpatialLayersBitmask() const {}

void RtpGenericFrameDescriptor::SetSpatialLayersBitmask(
    uint8_t spatial_layers) {}

void RtpGenericFrameDescriptor::SetResolution(int width, int height) {}

uint16_t RtpGenericFrameDescriptor::FrameId() const {}

void RtpGenericFrameDescriptor::SetFrameId(uint16_t frame_id) {}

rtc::ArrayView<const uint16_t>
RtpGenericFrameDescriptor::FrameDependenciesDiffs() const {}

bool RtpGenericFrameDescriptor::AddFrameDependencyDiff(uint16_t fdiff) {}

}  // namespace webrtc