mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 22:30:40 +01:00

In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
/* Copyright (c) 2015 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_CODECS_VP9_SCREENSHARE_LAYERS_H_
|
|
#define MODULES_VIDEO_CODING_CODECS_VP9_SCREENSHARE_LAYERS_H_
|
|
|
|
#include "modules/video_coding/codecs/vp9/vp9_impl.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class ScreenshareLayersVP9 {
|
|
public:
|
|
explicit ScreenshareLayersVP9(uint8_t num_layers);
|
|
|
|
// The target bitrate for layer with id layer_id.
|
|
void ConfigureBitrate(int threshold_kbps, uint8_t layer_id);
|
|
|
|
// The current start layer.
|
|
uint8_t GetStartLayer() const;
|
|
|
|
// Update the layer with the size of the layer frame.
|
|
void LayerFrameEncoded(unsigned int size_bytes, uint8_t layer_id);
|
|
|
|
// Get the layer settings for the next superframe.
|
|
//
|
|
// In short, each time the GetSuperFrameSettings is called the
|
|
// bitrate of every layer is calculated and if the cummulative
|
|
// bitrate exceeds the configured cummulative bitrates
|
|
// (ConfigureBitrate to configure) up to and including that
|
|
// layer then the resulting encoding settings for the
|
|
// superframe will only encode layers above that layer.
|
|
VP9EncoderImpl::SuperFrameRefSettings GetSuperFrameSettings(
|
|
uint32_t timestamp,
|
|
bool is_keyframe);
|
|
|
|
private:
|
|
// How many layers that are used.
|
|
uint8_t num_layers_;
|
|
|
|
// The index of the first layer to encode.
|
|
uint8_t start_layer_;
|
|
|
|
// Cummulative target kbps for the different layers.
|
|
float threshold_kbps_[kMaxVp9NumberOfSpatialLayers - 1];
|
|
|
|
// How many bits that has been used for a certain layer. Increased in
|
|
// FrameEncoded() by the size of the encoded frame and decreased in
|
|
// GetSuperFrameSettings() depending on the time between frames.
|
|
float bits_used_[kMaxVp9NumberOfSpatialLayers];
|
|
|
|
// Timestamp of last frame.
|
|
uint32_t last_timestamp_;
|
|
|
|
// If the last_timestamp_ has been set.
|
|
bool timestamp_initialized_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_VIDEO_CODING_CODECS_VP9_SCREENSHARE_LAYERS_H_
|