2020-08-14 15:32:14 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef API_VIDEO_CODECS_SPATIAL_LAYER_H_
|
|
|
|
|
#define API_VIDEO_CODECS_SPATIAL_LAYER_H_
|
|
|
|
|
|
2024-05-08 06:51:44 +00:00
|
|
|
#include "api/video_codecs/simulcast_stream.h"
|
2020-08-14 15:32:14 +02:00
|
|
|
|
2024-05-08 06:51:44 +00:00
|
|
|
namespace webrtc {
|
2020-08-14 15:32:14 +02:00
|
|
|
|
2024-05-08 06:51:44 +00:00
|
|
|
typedef SimulcastStream SpatialLayer;
|
2020-08-14 15:32:14 +02:00
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
#endif // API_VIDEO_CODECS_SPATIAL_LAYER_H_
|