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

Side by Side Diff: webrtc/common_video/bitrate_adjuster.cc

Issue 1965063003: Revert of Remove webrtc/base/scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 months 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/common_audio/real_fourier.h ('k') | webrtc/examples/peerconnection/client/conductor.h » ('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 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2016 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
11 #include "webrtc/common_video/include/bitrate_adjuster.h" 11 #include "webrtc/common_video/include/bitrate_adjuster.h"
12 12
13 #include <algorithm>
14 #include <cmath> 13 #include <cmath>
15 14
16 #include "webrtc/base/checks.h" 15 #include "webrtc/base/checks.h"
17 #include "webrtc/base/logging.h" 16 #include "webrtc/base/logging.h"
18 #include "webrtc/system_wrappers/include/clock.h" 17 #include "webrtc/system_wrappers/include/clock.h"
19 18
20 namespace webrtc { 19 namespace webrtc {
21 20
22 // Update bitrate at most once every second. 21 // Update bitrate at most once every second.
23 const uint32_t BitrateAdjuster::kBitrateUpdateIntervalMs = 1000; 22 const uint32_t BitrateAdjuster::kBitrateUpdateIntervalMs = 1000;
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 << static_cast<uint32_t>(adjusted_bitrate_bps); 151 << static_cast<uint32_t>(adjusted_bitrate_bps);
153 adjusted_bitrate_bps_ = adjusted_bitrate_bps; 152 adjusted_bitrate_bps_ = adjusted_bitrate_bps;
154 } 153 }
155 } 154 }
156 last_bitrate_update_time_ms_ = current_time_ms; 155 last_bitrate_update_time_ms_ = current_time_ms;
157 frames_since_last_update_ = 0; 156 frames_since_last_update_ = 0;
158 last_adjusted_target_bitrate_bps_ = target_bitrate_bps_; 157 last_adjusted_target_bitrate_bps_ = target_bitrate_bps_;
159 } 158 }
160 159
161 } // namespace webrtc 160 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/common_audio/real_fourier.h ('k') | webrtc/examples/peerconnection/client/conductor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698