blob: 863eb10180495bf2da3a282c00192c2907d87eef [file] [log] [blame]
kjellander6f8ce062015-11-16 13:52:24 -08001/*
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#ifndef COMMON_VIDEO_INCLUDE_I420_BUFFER_POOL_H_
12#define COMMON_VIDEO_INCLUDE_I420_BUFFER_POOL_H_
kjellander6f8ce062015-11-16 13:52:24 -080013
14#include <list>
Per00983572016-11-04 08:57:26 +010015#include <limits>
kjellander6f8ce062015-11-16 13:52:24 -080016
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020017#include "api/video/i420_buffer.h"
18#include "rtc_base/race_checker.h"
Niels Möllerb7239a92017-10-03 10:42:04 +020019#include "rtc_base/refcountedobject.h"
kjellander6f8ce062015-11-16 13:52:24 -080020
21namespace webrtc {
22
23// Simple buffer pool to avoid unnecessary allocations of I420Buffer objects.
24// The pool manages the memory of the I420Buffer returned from CreateBuffer.
25// When the I420Buffer is destructed, the memory is returned to the pool for use
26// by subsequent calls to CreateBuffer. If the resolution passed to CreateBuffer
27// changes, old buffers will be purged from the pool.
perkj5f8ebae2016-09-27 03:47:41 -070028// Note that CreateBuffer will crash if more than kMaxNumberOfFramesBeforeCrash
29// are created. This is to prevent memory leaks where frames are not returned.
kjellander6f8ce062015-11-16 13:52:24 -080030class I420BufferPool {
31 public:
Per00983572016-11-04 08:57:26 +010032 I420BufferPool()
perkj536447c2016-11-04 05:33:44 -070033 : I420BufferPool(false) {}
Per00983572016-11-04 08:57:26 +010034 explicit I420BufferPool(bool zero_initialize)
35 : I420BufferPool(zero_initialize, std::numeric_limits<size_t>::max()) {}
36 I420BufferPool(bool zero_initialze, size_t max_number_of_buffers);
hbos900f9752016-02-05 08:08:34 -080037
Per00983572016-11-04 08:57:26 +010038 // Returns a buffer from the pool. If no suitable buffer exist in the pool
39 // and there are less than |max_number_of_buffers| pending, a buffer is
40 // created. Returns null otherwise.
nissed591e3f2016-05-26 06:49:55 -070041 rtc::scoped_refptr<I420Buffer> CreateBuffer(int width, int height);
kjellander6f8ce062015-11-16 13:52:24 -080042 // Clears buffers_ and detaches the thread checker so that it can be reused
43 // later from another thread.
44 void Release();
45
46 private:
nissed591e3f2016-05-26 06:49:55 -070047 // Explicitly use a RefCountedObject to get access to HasOneRef,
48 // needed by the pool to check exclusive access.
49 using PooledI420Buffer = rtc::RefCountedObject<I420Buffer>;
50
Magnus Jedvert7fd92862016-09-17 11:27:35 +020051 rtc::RaceChecker race_checker_;
nissed591e3f2016-05-26 06:49:55 -070052 std::list<rtc::scoped_refptr<PooledI420Buffer>> buffers_;
hbos900f9752016-02-05 08:08:34 -080053 // If true, newly allocated buffers are zero-initialized. Note that recycled
54 // buffers are not zero'd before reuse. This is required of buffers used by
55 // FFmpeg according to http://crbug.com/390941, which only requires it for the
56 // initial allocation (as shown by FFmpeg's own buffer allocation code). It
57 // has to do with "Use-of-uninitialized-value" on "Linux_msan_chrome".
perkj536447c2016-11-04 05:33:44 -070058 const bool zero_initialize_;
Per00983572016-11-04 08:57:26 +010059 // Max number of buffers this pool can have pending.
perkj536447c2016-11-04 05:33:44 -070060 const size_t max_number_of_buffers_;
kjellander6f8ce062015-11-16 13:52:24 -080061};
62
63} // namespace webrtc
64
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020065#endif // COMMON_VIDEO_INCLUDE_I420_BUFFER_POOL_H_