mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 23:30:48 +01:00

In this CL: - Assign frame IDs so that simulcast streams share one frame ID space. - Added a CodecBufferUsage class that represent how a particular buffer was used (updated, referenced or both). - Calculate frame dependencies based on the CodecBufferUsage information. Bug: webrtc:10342 Change-Id: I4ed5ad703f9376a7d995c04bb757c7d214865ddb Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/131287 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Commit-Queue: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27784}
23 lines
750 B
C++
23 lines
750 B
C++
/*
|
|
* Copyright (c) 2019 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_VIDEO_CODEC_CONSTANTS_H_
|
|
#define API_VIDEO_VIDEO_CODEC_CONSTANTS_H_
|
|
|
|
namespace webrtc {
|
|
|
|
enum : int { kMaxEncoderBuffers = 8 };
|
|
enum : int { kMaxSimulcastStreams = 4 };
|
|
enum : int { kMaxSpatialLayers = 5 };
|
|
enum : int { kMaxTemporalStreams = 4 };
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_VIDEO_VIDEO_CODEC_CONSTANTS_H_
|