OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 "webrtc/common_video/include/i420_buffer_pool.h" | 11 #include "webrtc/common_video/include/i420_buffer_pool.h" |
12 | 12 |
13 #include "webrtc/base/checks.h" | 13 #include "webrtc/base/checks.h" |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 // One extra indirection is needed to make |HasOneRef| work. | 17 // One extra indirection is needed to make |HasOneRef| work. |
18 class PooledI420Buffer : public webrtc::VideoFrameBuffer { | 18 class PooledI420Buffer : public webrtc::VideoFrameBuffer { |
19 public: | 19 public: |
20 explicit PooledI420Buffer( | 20 explicit PooledI420Buffer( |
21 const rtc::scoped_refptr<webrtc::I420Buffer>& buffer) | 21 const rtc::scoped_refptr<webrtc::I420Buffer>& buffer) |
22 : buffer_(buffer) {} | 22 : buffer_(buffer) {} |
23 | 23 |
24 private: | 24 private: |
25 ~PooledI420Buffer() override {} | 25 ~PooledI420Buffer() override {} |
26 | 26 |
27 int width() const override { return buffer_->width(); } | 27 int width() const override { return buffer_->width(); } |
28 int height() const override { return buffer_->height(); } | 28 int height() const override { return buffer_->height(); } |
29 const uint8_t* data(webrtc::PlaneType type) const override { | 29 const uint8_t* DataY() const override { return buffer_->DataY(); } |
30 return buffer_->data(type); | 30 const uint8_t* DataU() const override { return buffer_->DataU(); } |
| 31 const uint8_t* DataV() const override { return buffer_->DataV(); } |
| 32 |
| 33 bool IsMutable() { return HasOneRef(); } |
| 34 // Make the IsMutable() check here instead of in |buffer_|, because the pool |
| 35 // also has a reference to |buffer_|. |
| 36 uint8_t* MutableDataY() override { |
| 37 RTC_DCHECK(IsMutable()); |
| 38 return const_cast<uint8_t*>(buffer_->DataY()); |
31 } | 39 } |
32 bool IsMutable() { return HasOneRef(); } | 40 uint8_t* MutableDataU() override { |
33 uint8_t* MutableData(webrtc::PlaneType type) override { | |
34 // Make the HasOneRef() check here instead of in |buffer_|, because the pool | |
35 // also has a reference to |buffer_|. | |
36 RTC_DCHECK(IsMutable()); | 41 RTC_DCHECK(IsMutable()); |
37 return const_cast<uint8_t*>(buffer_->data(type)); | 42 return const_cast<uint8_t*>(buffer_->DataU()); |
38 } | 43 } |
39 int stride(webrtc::PlaneType type) const override { | 44 uint8_t* MutableDataV() override { |
40 return buffer_->stride(type); | 45 RTC_DCHECK(IsMutable()); |
| 46 return const_cast<uint8_t*>(buffer_->DataV()); |
41 } | 47 } |
| 48 int StrideY() const override { return buffer_->StrideY(); } |
| 49 int StrideU() const override { return buffer_->StrideU(); } |
| 50 int StrideV() const override { return buffer_->StrideV(); } |
42 void* native_handle() const override { return nullptr; } | 51 void* native_handle() const override { return nullptr; } |
43 | 52 |
44 rtc::scoped_refptr<VideoFrameBuffer> NativeToI420Buffer() override { | 53 rtc::scoped_refptr<VideoFrameBuffer> NativeToI420Buffer() override { |
45 RTC_NOTREACHED(); | 54 RTC_NOTREACHED(); |
46 return nullptr; | 55 return nullptr; |
47 } | 56 } |
48 | 57 |
49 friend class rtc::RefCountedObject<PooledI420Buffer>; | 58 friend class rtc::RefCountedObject<PooledI420Buffer>; |
50 rtc::scoped_refptr<webrtc::I420Buffer> buffer_; | 59 rtc::scoped_refptr<webrtc::I420Buffer> buffer_; |
51 }; | 60 }; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // Allocate new buffer. | 96 // Allocate new buffer. |
88 rtc::scoped_refptr<I420Buffer> buffer = new rtc::RefCountedObject<I420Buffer>( | 97 rtc::scoped_refptr<I420Buffer> buffer = new rtc::RefCountedObject<I420Buffer>( |
89 width, height); | 98 width, height); |
90 if (zero_initialize_) | 99 if (zero_initialize_) |
91 buffer->InitializeData(); | 100 buffer->InitializeData(); |
92 buffers_.push_back(buffer); | 101 buffers_.push_back(buffer); |
93 return new rtc::RefCountedObject<PooledI420Buffer>(buffers_.back()); | 102 return new rtc::RefCountedObject<PooledI420Buffer>(buffers_.back()); |
94 } | 103 } |
95 | 104 |
96 } // namespace webrtc | 105 } // namespace webrtc |
OLD | NEW |