RTCVideoEncoder in chromium use it to generate dependency template and generic frame info for hw encode accelerators after encoding. https://chromium-review.googlesource.com/c/chromium/src/+/5849272 Bug: chromium:40763991 Change-Id: I96396ad972bf18790b09508e428c6362aae24a65 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/362151 Reviewed-by: Sergey Silkin <ssilkin@webrtc.org> Commit-Queue: Yingying Ma <yingying.ma@intel.com> Reviewed-by: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/main@{#43087}
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
/*
|
|
* 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 MODULES_VIDEO_CODING_SVC_CREATE_SCALABILITY_STRUCTURE_H_
|
|
#define MODULES_VIDEO_CODING_SVC_CREATE_SCALABILITY_STRUCTURE_H_
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
#include "api/video_codecs/scalability_mode.h"
|
|
#include "modules/video_coding/svc/scalable_video_controller.h"
|
|
#include "rtc_base/system/rtc_export.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// Creates a structure by name according to
|
|
// https://w3c.github.io/webrtc-svc/#scalabilitymodes*
|
|
// Returns nullptr for unknown name.
|
|
std::unique_ptr<ScalableVideoController> RTC_EXPORT
|
|
CreateScalabilityStructure(ScalabilityMode name);
|
|
|
|
// Returns description of the scalability structure identified by 'name',
|
|
// Return nullopt for unknown name.
|
|
std::optional<ScalableVideoController::StreamLayersConfig>
|
|
ScalabilityStructureConfig(ScalabilityMode name);
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_VIDEO_CODING_SVC_CREATE_SCALABILITY_STRUCTURE_H_
|