blob: c8561a4c9d3ea7c507e001885999d1c0ca2bdbaf [file] [log] [blame]
Sergey Silkin86684962018-03-28 19:32:37 +02001/* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
2 *
3 * Use of this source code is governed by a BSD-style license
4 * that can be found in the LICENSE file in the root of the source
5 * tree. An additional intellectual property rights grant can be found
6 * in the file PATENTS. All contributing project authors may
7 * be found in the AUTHORS file in the root of the source tree.
8 */
9
10#ifndef MODULES_VIDEO_CODING_CODECS_VP9_SVC_CONFIG_H_
11#define MODULES_VIDEO_CODING_CODECS_VP9_SVC_CONFIG_H_
12
13#include <vector>
14
15#include "common_types.h" // NOLINT(build/include)
16
17namespace webrtc {
18
19std::vector<SpatialLayer> GetSvcConfig(size_t input_width,
20 size_t input_height,
21 size_t num_spatial_layers,
Sergey Silkindfe8ca02018-05-14 19:31:07 +020022 size_t num_temporal_layers,
23 bool is_screen_sharing);
Sergey Silkin86684962018-03-28 19:32:37 +020024
25} // namespace webrtc
26
27#endif // MODULES_VIDEO_CODING_CODECS_VP9_SVC_CONFIG_H_