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

Side by Side Diff: webrtc/modules/video_coding/histogram.cc

Issue 1814753002: Moved sequence number specific operations from mod_ops.h (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase Created 4 years, 9 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/modules/modules.gyp ('k') | webrtc/modules/video_coding/nack_module.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 (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 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/modules/video_coding/histogram.h" 11 #include "webrtc/modules/video_coding/histogram.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 14
15 #include "webrtc/base/mod_ops.h" 15 #include "webrtc/modules/video_coding/sequence_number_util.h"
16 16
17 namespace webrtc { 17 namespace webrtc {
18 namespace video_coding { 18 namespace video_coding {
19 Histogram::Histogram(size_t num_buckets, size_t max_num_values) { 19 Histogram::Histogram(size_t num_buckets, size_t max_num_values) {
20 RTC_DCHECK_GT(num_buckets, 0u); 20 RTC_DCHECK_GT(num_buckets, 0u);
21 RTC_DCHECK_GT(max_num_values, 0u); 21 RTC_DCHECK_GT(max_num_values, 0u);
22 buckets_.resize(num_buckets); 22 buckets_.resize(num_buckets);
23 values_.reserve(max_num_values); 23 values_.reserve(max_num_values);
24 index_ = 0; 24 index_ = 0;
25 } 25 }
(...skipping 26 matching lines...) Expand all
52 } 52 }
53 return bucket; 53 return bucket;
54 } 54 }
55 55
56 size_t Histogram::NumValues() const { 56 size_t Histogram::NumValues() const {
57 return values_.size(); 57 return values_.size();
58 } 58 }
59 59
60 } // namespace video_coding 60 } // namespace video_coding
61 } // namespace webrtc 61 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/modules/video_coding/nack_module.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698