| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 VideoSendStream::Stats GetStats(); | 53 VideoSendStream::Stats GetStats(); |
| 54 | 54 |
| 55 virtual void OnSendEncodedImage(const EncodedImage& encoded_image, | 55 virtual void OnSendEncodedImage(const EncodedImage& encoded_image, |
| 56 const CodecSpecificInfo* codec_info); | 56 const CodecSpecificInfo* codec_info); |
| 57 // Used to update incoming frame rate. | 57 // Used to update incoming frame rate. |
| 58 void OnIncomingFrame(int width, int height); | 58 void OnIncomingFrame(int width, int height); |
| 59 | 59 |
| 60 void OnCpuRestrictedResolutionChanged(bool cpu_restricted_resolution); | 60 void OnCpuRestrictedResolutionChanged(bool cpu_restricted_resolution); |
| 61 void OnQualityRestrictedResolutionChanged(int num_quality_downscales); | 61 void OnQualityRestrictedResolutionChanged(int num_quality_downscales); |
| 62 void SetResolutionRestrictionStats(bool scaling_enabled, | 62 void SetCpuScalingStats(bool cpu_restricted_resolution); |
| 63 bool cpu_restricted, | 63 void SetQualityScalingStats(int num_quality_downscales); // -1: disabled. |
| 64 int num_quality_downscales); | |
| 65 | 64 |
| 66 void OnEncoderStatsUpdate(uint32_t framerate, uint32_t bitrate); | 65 void OnEncoderStatsUpdate(uint32_t framerate, uint32_t bitrate); |
| 67 void OnSuspendChange(bool is_suspended); | 66 void OnSuspendChange(bool is_suspended); |
| 68 void OnInactiveSsrc(uint32_t ssrc); | 67 void OnInactiveSsrc(uint32_t ssrc); |
| 69 | 68 |
| 70 // Used to indicate change in content type, which may require a change in | 69 // Used to indicate change in content type, which may require a change in |
| 71 // how stats are collected and set the configured preferred media bitrate. | 70 // how stats are collected and set the configured preferred media bitrate. |
| 72 void OnEncoderReconfigured(const VideoEncoderConfig& encoder_config, | 71 void OnEncoderReconfigured(const VideoEncoderConfig& encoder_config, |
| 73 uint32_t preferred_bitrate_bps); | 72 uint32_t preferred_bitrate_bps); |
| 74 | 73 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 const VideoSendStream::Stats start_stats_; | 213 const VideoSendStream::Stats start_stats_; |
| 215 std::map<int, QpCounters> | 214 std::map<int, QpCounters> |
| 216 qp_counters_; // QP counters mapped by spatial idx. | 215 qp_counters_; // QP counters mapped by spatial idx. |
| 217 }; | 216 }; |
| 218 | 217 |
| 219 std::unique_ptr<UmaSamplesContainer> uma_container_ GUARDED_BY(crit_); | 218 std::unique_ptr<UmaSamplesContainer> uma_container_ GUARDED_BY(crit_); |
| 220 }; | 219 }; |
| 221 | 220 |
| 222 } // namespace webrtc | 221 } // namespace webrtc |
| 223 #endif // WEBRTC_VIDEO_SEND_STATISTICS_PROXY_H_ | 222 #endif // WEBRTC_VIDEO_SEND_STATISTICS_PROXY_H_ |
| OLD | NEW |