Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: webrtc/video/send_statistics_proxy.h

Issue 2398963003: Move usage of QualityScaler to ViEEncoder. (Closed)
Patch Set: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/video/overuse_frame_detector_unittest.cc ('k') | webrtc/video/send_statistics_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 VideoEncoderConfig::ContentType content_type); 49 VideoEncoderConfig::ContentType content_type);
50 virtual ~SendStatisticsProxy(); 50 virtual ~SendStatisticsProxy();
51 51
52 VideoSendStream::Stats GetStats(); 52 VideoSendStream::Stats GetStats();
53 53
54 virtual void OnSendEncodedImage(const EncodedImage& encoded_image, 54 virtual void OnSendEncodedImage(const EncodedImage& encoded_image,
55 const CodecSpecificInfo* codec_info); 55 const CodecSpecificInfo* codec_info);
56 // Used to update incoming frame rate. 56 // Used to update incoming frame rate.
57 void OnIncomingFrame(int width, int height); 57 void OnIncomingFrame(int width, int height);
58 58
59 // Used to indicate that the current input frame resolution is restricted due
60 // to cpu usage.
61 void SetCpuRestrictedResolution(bool cpu_restricted);
62 // Used to update the number of times the input frame resolution has changed
63 // due to cpu adaptation.
64 void OnCpuRestrictedResolutionChanged(bool cpu_restricted_resolution); 59 void OnCpuRestrictedResolutionChanged(bool cpu_restricted_resolution);
60 void OnQualityRestrictedResolutionChanged(bool restricted);
61 void SetResolutionRestrictionStats(bool bandwidth, bool cpu);
65 62
66 void OnEncoderStatsUpdate(uint32_t framerate, uint32_t bitrate); 63 void OnEncoderStatsUpdate(uint32_t framerate, uint32_t bitrate);
67 void OnSuspendChange(bool is_suspended); 64 void OnSuspendChange(bool is_suspended);
68 void OnInactiveSsrc(uint32_t ssrc); 65 void OnInactiveSsrc(uint32_t ssrc);
69 66
70 // Used to indicate change in content type, which may require a change in 67 // 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. 68 // how stats are collected and set the configured preferred media bitrate.
72 void OnEncoderReconfigured(const VideoEncoderConfig& encoder_config, 69 void OnEncoderReconfigured(const VideoEncoderConfig& encoder_config,
73 uint32_t preferred_bitrate_bps); 70 uint32_t preferred_bitrate_bps);
74 71
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 const VideoSendStream::Stats start_stats_; 191 const VideoSendStream::Stats start_stats_;
195 std::map<int, QpCounters> 192 std::map<int, QpCounters>
196 qp_counters_; // QP counters mapped by spatial idx. 193 qp_counters_; // QP counters mapped by spatial idx.
197 }; 194 };
198 195
199 std::unique_ptr<UmaSamplesContainer> uma_container_ GUARDED_BY(crit_); 196 std::unique_ptr<UmaSamplesContainer> uma_container_ GUARDED_BY(crit_);
200 }; 197 };
201 198
202 } // namespace webrtc 199 } // namespace webrtc
203 #endif // WEBRTC_VIDEO_SEND_STATISTICS_PROXY_H_ 200 #endif // WEBRTC_VIDEO_SEND_STATISTICS_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/video/overuse_frame_detector_unittest.cc ('k') | webrtc/video/send_statistics_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698