magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "common_video/include/i420_buffer_pool.h" |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 12 | |
Yves Gerey | 988cc08 | 2018-10-23 12:03:01 +0200 | [diff] [blame] | 13 | #include <limits> |
| 14 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 15 | #include "rtc_base/checks.h" |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 16 | |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 17 | namespace webrtc { |
| 18 | |
Paulina Hensman | a680a6a | 2018-04-05 11:42:24 +0200 | [diff] [blame] | 19 | I420BufferPool::I420BufferPool() : I420BufferPool(false) {} |
| 20 | I420BufferPool::I420BufferPool(bool zero_initialize) |
| 21 | : I420BufferPool(zero_initialize, std::numeric_limits<size_t>::max()) {} |
Per | 0098357 | 2016-11-04 08:57:26 +0100 | [diff] [blame] | 22 | I420BufferPool::I420BufferPool(bool zero_initialize, |
| 23 | size_t max_number_of_buffers) |
| 24 | : zero_initialize_(zero_initialize), |
| 25 | max_number_of_buffers_(max_number_of_buffers) {} |
Paulina Hensman | a680a6a | 2018-04-05 11:42:24 +0200 | [diff] [blame] | 26 | I420BufferPool::~I420BufferPool() = default; |
pbos@webrtc.org | a3209a2 | 2015-03-20 13:35:56 +0000 | [diff] [blame] | 27 | |
| 28 | void I420BufferPool::Release() { |
pbos@webrtc.org | a3209a2 | 2015-03-20 13:35:56 +0000 | [diff] [blame] | 29 | buffers_.clear(); |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 30 | } |
| 31 | |
nisse | d591e3f | 2016-05-26 06:49:55 -0700 | [diff] [blame] | 32 | rtc::scoped_refptr<I420Buffer> I420BufferPool::CreateBuffer(int width, |
| 33 | int height) { |
Noah Richards | 408a3c6 | 2019-04-01 10:14:47 -0700 | [diff] [blame^] | 34 | // Default stride_y is width, default uv stride is width / 2 (rounding up). |
| 35 | return CreateBuffer(width, height, width, (width + 1) / 2, (width + 1) / 2); |
| 36 | } |
| 37 | |
| 38 | rtc::scoped_refptr<I420Buffer> I420BufferPool::CreateBuffer(int width, |
| 39 | int height, |
| 40 | int stride_y, |
| 41 | int stride_u, |
| 42 | int stride_v) { |
Magnus Jedvert | 7fd9286 | 2016-09-17 11:27:35 +0200 | [diff] [blame] | 43 | RTC_DCHECK_RUNS_SERIALIZED(&race_checker_); |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 44 | // Release buffers with wrong resolution. |
| 45 | for (auto it = buffers_.begin(); it != buffers_.end();) { |
Noah Richards | 408a3c6 | 2019-04-01 10:14:47 -0700 | [diff] [blame^] | 46 | const auto& buffer = *it; |
| 47 | if (buffer->width() != width || buffer->height() != height || |
| 48 | buffer->StrideY() != stride_y || buffer->StrideU() != stride_u || |
| 49 | buffer->StrideV() != stride_v) { |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 50 | it = buffers_.erase(it); |
Noah Richards | 408a3c6 | 2019-04-01 10:14:47 -0700 | [diff] [blame^] | 51 | } else { |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 52 | ++it; |
Noah Richards | 408a3c6 | 2019-04-01 10:14:47 -0700 | [diff] [blame^] | 53 | } |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 54 | } |
| 55 | // Look for a free buffer. |
nisse | d591e3f | 2016-05-26 06:49:55 -0700 | [diff] [blame] | 56 | for (const rtc::scoped_refptr<PooledI420Buffer>& buffer : buffers_) { |
| 57 | // If the buffer is in use, the ref count will be >= 2, one from the list we |
| 58 | // are looping over and one from the application. If the ref count is 1, |
| 59 | // then the list we are looping over holds the only reference and it's safe |
| 60 | // to reuse. |
| 61 | if (buffer->HasOneRef()) |
| 62 | return buffer; |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 63 | } |
Per | 0098357 | 2016-11-04 08:57:26 +0100 | [diff] [blame] | 64 | |
| 65 | if (buffers_.size() >= max_number_of_buffers_) |
| 66 | return nullptr; |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 67 | // Allocate new buffer. |
nisse | d591e3f | 2016-05-26 06:49:55 -0700 | [diff] [blame] | 68 | rtc::scoped_refptr<PooledI420Buffer> buffer = |
Noah Richards | 408a3c6 | 2019-04-01 10:14:47 -0700 | [diff] [blame^] | 69 | new PooledI420Buffer(width, height, stride_y, stride_u, stride_v); |
hbos | 900f975 | 2016-02-05 08:08:34 -0800 | [diff] [blame] | 70 | if (zero_initialize_) |
| 71 | buffer->InitializeData(); |
| 72 | buffers_.push_back(buffer); |
nisse | d591e3f | 2016-05-26 06:49:55 -0700 | [diff] [blame] | 73 | return buffer; |
magjed@webrtc.org | 73d763e | 2015-03-17 11:40:45 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | } // namespace webrtc |