blob: 2e6cdc83b51b6bfb4f889f84851889ae1fcb08ed [file] [log] [blame]
magjed@webrtc.org73d763e2015-03-17 11:40:45 +00001/*
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#include "common_video/include/i420_buffer_pool.h"
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000012
Yves Gerey988cc082018-10-23 12:03:01 +020013#include <limits>
14
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020015#include "rtc_base/checks.h"
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000016
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000017namespace webrtc {
18
Paulina Hensmana680a6a2018-04-05 11:42:24 +020019I420BufferPool::I420BufferPool() : I420BufferPool(false) {}
20I420BufferPool::I420BufferPool(bool zero_initialize)
21 : I420BufferPool(zero_initialize, std::numeric_limits<size_t>::max()) {}
Per00983572016-11-04 08:57:26 +010022I420BufferPool::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 Hensmana680a6a2018-04-05 11:42:24 +020026I420BufferPool::~I420BufferPool() = default;
pbos@webrtc.orga3209a22015-03-20 13:35:56 +000027
28void I420BufferPool::Release() {
pbos@webrtc.orga3209a22015-03-20 13:35:56 +000029 buffers_.clear();
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000030}
31
nissed591e3f2016-05-26 06:49:55 -070032rtc::scoped_refptr<I420Buffer> I420BufferPool::CreateBuffer(int width,
33 int height) {
Magnus Jedvert7fd92862016-09-17 11:27:35 +020034 RTC_DCHECK_RUNS_SERIALIZED(&race_checker_);
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000035 // Release buffers with wrong resolution.
36 for (auto it = buffers_.begin(); it != buffers_.end();) {
37 if ((*it)->width() != width || (*it)->height() != height)
38 it = buffers_.erase(it);
39 else
40 ++it;
41 }
42 // Look for a free buffer.
nissed591e3f2016-05-26 06:49:55 -070043 for (const rtc::scoped_refptr<PooledI420Buffer>& buffer : buffers_) {
44 // If the buffer is in use, the ref count will be >= 2, one from the list we
45 // are looping over and one from the application. If the ref count is 1,
46 // then the list we are looping over holds the only reference and it's safe
47 // to reuse.
48 if (buffer->HasOneRef())
49 return buffer;
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000050 }
Per00983572016-11-04 08:57:26 +010051
52 if (buffers_.size() >= max_number_of_buffers_)
53 return nullptr;
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000054 // Allocate new buffer.
nissed591e3f2016-05-26 06:49:55 -070055 rtc::scoped_refptr<PooledI420Buffer> buffer =
56 new PooledI420Buffer(width, height);
hbos900f9752016-02-05 08:08:34 -080057 if (zero_initialize_)
58 buffer->InitializeData();
59 buffers_.push_back(buffer);
nissed591e3f2016-05-26 06:49:55 -070060 return buffer;
magjed@webrtc.org73d763e2015-03-17 11:40:45 +000061}
62
63} // namespace webrtc