blob: bace10b2901cfdceeee8ba7557b9cbf8fe400cbe [file] [log] [blame]
Niels Möllerc0a9f352022-05-20 13:38:49 +02001/*
2 * Copyright (c) 2022 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
11#ifndef API_VIDEO_CODECS_SIMULCAST_STREAM_H_
12#define API_VIDEO_CODECS_SIMULCAST_STREAM_H_
13
14#include "api/video_codecs/spatial_layer.h"
15
16namespace webrtc {
17
18// TODO(bugs.webrtc.org/6883): Unify with struct VideoStream, part of
19// VideoEncoderConfig.
20// TODO(bugs.webrtc.org/11607): Make this a separate type, rather than an alias.
21using SimulcastStream = SpatialLayer;
22
23} // namespace webrtc
24#endif // API_VIDEO_CODECS_SIMULCAST_STREAM_H_