niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 11 | #include <assert.h> |
pbos@webrtc.org | a440732 | 2013-07-16 12:32:05 +0000 | [diff] [blame] | 12 | #include <stdlib.h> |
pbos | 1968d3f | 2015-09-28 08:52:18 -0700 | [diff] [blame] | 13 | |
Henrik Kjellander | ff761fb | 2015-11-04 08:31:52 +0100 | [diff] [blame] | 14 | #include "webrtc/modules/include/module_common_types.h" |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 15 | #include "webrtc/modules/video_coding/timestamp_map.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 16 | |
| 17 | namespace webrtc { |
| 18 | |
pbos | 1968d3f | 2015-09-28 08:52:18 -0700 | [diff] [blame] | 19 | VCMTimestampMap::VCMTimestampMap(size_t capacity) |
| 20 | : ring_buffer_(new TimestampDataTuple[capacity]), |
| 21 | capacity_(capacity), |
| 22 | next_add_idx_(0), |
| 23 | next_pop_idx_(0) { |
| 24 | } |
| 25 | |
| 26 | VCMTimestampMap::~VCMTimestampMap() { |
| 27 | } |
| 28 | |
| 29 | void VCMTimestampMap::Add(uint32_t timestamp, VCMFrameInformation* data) { |
| 30 | ring_buffer_[next_add_idx_].timestamp = timestamp; |
| 31 | ring_buffer_[next_add_idx_].data = data; |
| 32 | next_add_idx_ = (next_add_idx_ + 1) % capacity_; |
| 33 | |
| 34 | if (next_add_idx_ == next_pop_idx_) { |
| 35 | // Circular list full; forget oldest entry. |
| 36 | next_pop_idx_ = (next_pop_idx_ + 1) % capacity_; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | VCMFrameInformation* VCMTimestampMap::Pop(uint32_t timestamp) { |
| 41 | while (!IsEmpty()) { |
| 42 | if (ring_buffer_[next_pop_idx_].timestamp == timestamp) { |
| 43 | // Found start time for this timestamp. |
| 44 | VCMFrameInformation* data = ring_buffer_[next_pop_idx_].data; |
| 45 | ring_buffer_[next_pop_idx_].data = nullptr; |
| 46 | next_pop_idx_ = (next_pop_idx_ + 1) % capacity_; |
| 47 | return data; |
| 48 | } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp, |
| 49 | timestamp)) { |
| 50 | // The timestamp we are looking for is not in the list. |
| 51 | return nullptr; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 52 | } |
| 53 | |
pbos | 1968d3f | 2015-09-28 08:52:18 -0700 | [diff] [blame] | 54 | // Not in this position, check next (and forget this position). |
| 55 | next_pop_idx_ = (next_pop_idx_ + 1) % capacity_; |
| 56 | } |
| 57 | |
| 58 | // Could not find matching timestamp in list. |
| 59 | return nullptr; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 60 | } |
| 61 | |
pbos | 1968d3f | 2015-09-28 08:52:18 -0700 | [diff] [blame] | 62 | bool VCMTimestampMap::IsEmpty() const { |
| 63 | return (next_add_idx_ == next_pop_idx_); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 64 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 65 | } |