| OLD | NEW |
| 1 /* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 /* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 2 * | 2 * |
| 3 * Use of this source code is governed by a BSD-style license | 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 | 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 | 5 * tree. An additional intellectual property rights grant can be found |
| 6 * in the file PATENTS. All contributing project authors may | 6 * in the file PATENTS. All contributing project authors may |
| 7 * be found in the AUTHORS file in the root of the source tree. | 7 * be found in the AUTHORS file in the root of the source tree. |
| 8 */ | 8 */ |
| 9 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ | 9 #ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ |
| 10 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ | 10 #define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ |
| 11 | 11 |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "webrtc/base/rate_statistics.h" | |
| 15 #include "webrtc/base/timeutils.h" | |
| 16 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" | 14 #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" |
| 17 #include "webrtc/modules/video_coding/utility/frame_dropper.h" | 15 #include "webrtc/modules/video_coding/utility/frame_dropper.h" |
| 16 #include "webrtc/rtc_base/rate_statistics.h" |
| 17 #include "webrtc/rtc_base/timeutils.h" |
| 18 #include "webrtc/typedefs.h" | 18 #include "webrtc/typedefs.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 struct CodecSpecificInfoVP8; | 22 struct CodecSpecificInfoVP8; |
| 23 class Clock; | 23 class Clock; |
| 24 | 24 |
| 25 class ScreenshareLayers : public TemporalLayers { | 25 class ScreenshareLayers : public TemporalLayers { |
| 26 public: | 26 public: |
| 27 static const double kMaxTL0FpsReduction; | 27 static const double kMaxTL0FpsReduction; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 int64_t num_overshoots_ = 0; | 121 int64_t num_overshoots_ = 0; |
| 122 int64_t tl0_qp_sum_ = 0; | 122 int64_t tl0_qp_sum_ = 0; |
| 123 int64_t tl1_qp_sum_ = 0; | 123 int64_t tl1_qp_sum_ = 0; |
| 124 int64_t tl0_target_bitrate_sum_ = 0; | 124 int64_t tl0_target_bitrate_sum_ = 0; |
| 125 int64_t tl1_target_bitrate_sum_ = 0; | 125 int64_t tl1_target_bitrate_sum_ = 0; |
| 126 } stats_; | 126 } stats_; |
| 127 }; | 127 }; |
| 128 } // namespace webrtc | 128 } // namespace webrtc |
| 129 | 129 |
| 130 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ | 130 #endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_SCREENSHARE_LAYERS_H_ |
| OLD | NEW |