OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 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 |
(...skipping 136 matching lines...) Loading... | |
147 } | 147 } |
148 | 148 |
149 // Replace the contents of the buffer. Accepts the same types as the | 149 // Replace the contents of the buffer. Accepts the same types as the |
150 // constructors. | 150 // constructors. |
151 template <typename T, | 151 template <typename T, |
152 typename std::enable_if< | 152 typename std::enable_if< |
153 internal::BufferCompat<uint8_t, T>::value>::type* = nullptr> | 153 internal::BufferCompat<uint8_t, T>::value>::type* = nullptr> |
154 void SetData(const T* data, size_t size) { | 154 void SetData(const T* data, size_t size) { |
155 RTC_DCHECK(IsConsistent()); | 155 RTC_DCHECK(IsConsistent()); |
156 if (!buffer_ || !buffer_->HasOneRef()) { | 156 if (!buffer_ || !buffer_->HasOneRef()) { |
157 buffer_ = size > 0 ? new RefCountedObject<Buffer>(data, size) | 157 buffer_ = size > 0 ? new RefCountedObject<Buffer>(data, size) |
kwiberg-webrtc
2016/09/09 08:55:13
Here the new buffer gets capacity size, instead of
danilchap
2016/09/09 11:21:17
Yes, that the only place I found too,
but it might
kwiberg-webrtc
2016/09/09 12:59:13
Hmm. Right now, no one can look at CopyOnWriteBuff
danilchap
2016/09/09 16:00:56
This solution wouldn't cover my user case:
Buffer
kwiberg-webrtc
2016/09/10 00:12:18
Right. So we'd need steal_buffer to be able to do
| |
158 : nullptr; | 158 : nullptr; |
159 } else { | 159 } else { |
160 buffer_->SetData(data, size); | 160 buffer_->SetData(data, size); |
161 } | 161 } |
162 RTC_DCHECK(IsConsistent()); | 162 RTC_DCHECK(IsConsistent()); |
163 } | 163 } |
164 | 164 |
165 // Replace the contents of the buffer. Ensure capacity is at least |capacity|. | |
166 template <typename T, | |
167 typename std::enable_if< | |
168 internal::BufferCompat<uint8_t, T>::value>::type* = nullptr> | |
169 void SetData(const T* data, size_t size, size_t capacity) { | |
kwiberg-webrtc
2016/09/09 08:55:13
Isn't this equivalent to calling
x.EnsureCapaci
danilchap
2016/09/09 11:21:17
1. SetData signatures mirror constructor signature
kwiberg-webrtc
2016/09/09 12:59:13
I'm not sure. You can always replace
Buffer buf
danilchap
2016/09/09 16:00:56
Yes, I'm wrong. it is not same. Buffer may benefit
| |
170 RTC_DCHECK(IsConsistent()); | |
171 capacity = std::max(size, capacity); | |
172 if (!buffer_ || !buffer_->HasOneRef() || buffer_->capacity() < capacity) { | |
173 buffer_ = capacity > 0 | |
174 ? new RefCountedObject<Buffer>(data, size, capacity) | |
175 : nullptr; | |
176 } else { | |
177 buffer_->SetData(data, size); | |
178 } | |
179 RTC_DCHECK(IsConsistent()); | |
180 } | |
181 | |
165 template <typename T, | 182 template <typename T, |
166 size_t N, | 183 size_t N, |
167 typename std::enable_if< | 184 typename std::enable_if< |
168 internal::BufferCompat<uint8_t, T>::value>::type* = nullptr> | 185 internal::BufferCompat<uint8_t, T>::value>::type* = nullptr> |
169 void SetData(const T (&array)[N]) { | 186 void SetData(const T (&array)[N]) { |
170 SetData(array, N); | 187 SetData(array, N); |
171 } | 188 } |
172 | 189 |
173 void SetData(const CopyOnWriteBuffer& buf) { | 190 void SetData(const CopyOnWriteBuffer& buf) { |
174 RTC_DCHECK(IsConsistent()); | 191 RTC_DCHECK(IsConsistent()); |
(...skipping 106 matching lines...) Loading... | |
281 return (!buffer_ || buffer_->capacity() > 0); | 298 return (!buffer_ || buffer_->capacity() > 0); |
282 } | 299 } |
283 | 300 |
284 // buffer_ is either null, or points to an rtc::Buffer with capacity > 0. | 301 // buffer_ is either null, or points to an rtc::Buffer with capacity > 0. |
285 scoped_refptr<RefCountedObject<Buffer>> buffer_; | 302 scoped_refptr<RefCountedObject<Buffer>> buffer_; |
286 }; | 303 }; |
287 | 304 |
288 } // namespace rtc | 305 } // namespace rtc |
289 | 306 |
290 #endif // WEBRTC_BASE_COPYONWRITEBUFFER_H_ | 307 #endif // WEBRTC_BASE_COPYONWRITEBUFFER_H_ |
OLD | NEW |