OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 <assert.h> | 11 #include <assert.h> |
12 #include <stdlib.h> | 12 #include <stdlib.h> |
13 | 13 |
14 #include "webrtc/modules/interface/module_common_types.h" | 14 #include "webrtc/modules/include/module_common_types.h" |
15 #include "webrtc/modules/video_coding/main/source/timestamp_map.h" | 15 #include "webrtc/modules/video_coding/main/source/timestamp_map.h" |
16 | 16 |
17 namespace webrtc { | 17 namespace webrtc { |
18 | 18 |
19 VCMTimestampMap::VCMTimestampMap(size_t capacity) | 19 VCMTimestampMap::VCMTimestampMap(size_t capacity) |
20 : ring_buffer_(new TimestampDataTuple[capacity]), | 20 : ring_buffer_(new TimestampDataTuple[capacity]), |
21 capacity_(capacity), | 21 capacity_(capacity), |
22 next_add_idx_(0), | 22 next_add_idx_(0), |
23 next_pop_idx_(0) { | 23 next_pop_idx_(0) { |
24 } | 24 } |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 } | 56 } |
57 | 57 |
58 // Could not find matching timestamp in list. | 58 // Could not find matching timestamp in list. |
59 return nullptr; | 59 return nullptr; |
60 } | 60 } |
61 | 61 |
62 bool VCMTimestampMap::IsEmpty() const { | 62 bool VCMTimestampMap::IsEmpty() const { |
63 return (next_add_idx_ == next_pop_idx_); | 63 return (next_add_idx_ == next_pop_idx_); |
64 } | 64 } |
65 } | 65 } |
OLD | NEW |