Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: webrtc/common_video/i420_buffer_pool.cc

Issue 1878623002: Added new VideoFrameBuffer methods Data[YUV]() etc. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/common_video/i420_buffer_pool_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // TODO(nisse): Why not simply inherit I420Buffer, and override
magjed_webrtc 2016/04/13 08:30:50 First, you can't override HasOneRef here, because
nisse-webrtc 2016/04/13 08:47:08 I'll investigate this in a separate cl. The idea
perkj_webrtc 2016/04/14 06:30:42 please remove this todo then and just keep that th
19 // HasOneRef? Possibly after renaming to IsExclusive or IsMutable or
perkj_webrtc 2016/04/12 07:18:40 If you want.
20 // some such.
18 class PooledI420Buffer : public webrtc::VideoFrameBuffer { 21 class PooledI420Buffer : public webrtc::VideoFrameBuffer {
19 public: 22 public:
20 explicit PooledI420Buffer( 23 explicit PooledI420Buffer(
21 const rtc::scoped_refptr<webrtc::I420Buffer>& buffer) 24 const rtc::scoped_refptr<webrtc::I420Buffer>& buffer)
22 : buffer_(buffer) {} 25 : buffer_(buffer) {}
23 26
24 private: 27 private:
25 ~PooledI420Buffer() override {} 28 ~PooledI420Buffer() override {}
26 29
27 int width() const override { return buffer_->width(); } 30 int width() const override { return buffer_->width(); }
28 int height() const override { return buffer_->height(); } 31 int height() const override { return buffer_->height(); }
29 const uint8_t* data(webrtc::PlaneType type) const override { 32 const uint8_t* DataY() const override { return buffer_->DataY(); }
perkj_webrtc 2016/04/12 07:18:40 Skip adding getters for Data on cricket::VideoFram
nisse-webrtc 2016/04/13 13:29:56 I don't do that... this is a subclass of VideoFram
30 return buffer_->data(type); 33 const uint8_t* DataU() const override { return buffer_->DataU(); }
34 const uint8_t* DataV() const override { return buffer_->DataV(); }
35
36 // Make the HasOneRef() check here instead of in |buffer_|, because the pool
37 // also has a reference to |buffer_|.
38 uint8_t* MutableDataY() override {
39 RTC_DCHECK(HasOneRef());
40 return const_cast<uint8_t*>(buffer_->DataY());
31 } 41 }
32 uint8_t* MutableData(webrtc::PlaneType type) override { 42 uint8_t* MutableDataU() override {
33 // Make the HasOneRef() check here instead of in |buffer_|, because the pool
34 // also has a reference to |buffer_|.
35 RTC_DCHECK(HasOneRef()); 43 RTC_DCHECK(HasOneRef());
36 return const_cast<uint8_t*>(buffer_->data(type)); 44 return const_cast<uint8_t*>(buffer_->DataU());
37 } 45 }
38 int stride(webrtc::PlaneType type) const override { 46 uint8_t* MutableDataV() override {
39 return buffer_->stride(type); 47 RTC_DCHECK(HasOneRef());
48 return const_cast<uint8_t*>(buffer_->DataV());
40 } 49 }
50 int StrideY() const override { return buffer_->StrideY(); }
51 int StrideU() const override { return buffer_->StrideU(); }
52 int StrideV() const override { return buffer_->StrideV(); }
41 void* native_handle() const override { return nullptr; } 53 void* native_handle() const override { return nullptr; }
42 54
43 rtc::scoped_refptr<VideoFrameBuffer> NativeToI420Buffer() override { 55 rtc::scoped_refptr<VideoFrameBuffer> NativeToI420Buffer() override {
44 RTC_NOTREACHED(); 56 RTC_NOTREACHED();
45 return nullptr; 57 return nullptr;
46 } 58 }
47 59
48 friend class rtc::RefCountedObject<PooledI420Buffer>; 60 friend class rtc::RefCountedObject<PooledI420Buffer>;
49 rtc::scoped_refptr<webrtc::I420Buffer> buffer_; 61 rtc::scoped_refptr<webrtc::I420Buffer> buffer_;
50 }; 62 };
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 // Allocate new buffer. 98 // Allocate new buffer.
87 rtc::scoped_refptr<I420Buffer> buffer = new rtc::RefCountedObject<I420Buffer>( 99 rtc::scoped_refptr<I420Buffer> buffer = new rtc::RefCountedObject<I420Buffer>(
88 width, height); 100 width, height);
89 if (zero_initialize_) 101 if (zero_initialize_)
90 buffer->InitializeData(); 102 buffer->InitializeData();
91 buffers_.push_back(buffer); 103 buffers_.push_back(buffer);
92 return new rtc::RefCountedObject<PooledI420Buffer>(buffers_.back()); 104 return new rtc::RefCountedObject<PooledI420Buffer>(buffers_.back());
93 } 105 }
94 106
95 } // namespace webrtc 107 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_video/i420_buffer_pool_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698