blob: a78cf3dba1eccaacf5a893c7a7009d105a07187c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (c) 2008-2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/logging.h"
#include "media/base/data_buffer.h"
namespace media {
DataBuffer::DataBuffer(uint8* buffer, size_t buffer_size)
: data_(buffer),
buffer_size_(buffer_size),
data_size_(buffer_size) {
}
DataBuffer::DataBuffer(size_t buffer_size)
: data_(new uint8[buffer_size]),
buffer_size_(buffer_size),
data_size_(0) {
CHECK(data_.get()) << "DataBuffer ctor failed to allocate memory";
// Prevent arbitrary pointers.
if (buffer_size == 0)
data_.reset(NULL);
}
DataBuffer::~DataBuffer() {
}
const uint8* DataBuffer::GetData() const {
return data_.get();
}
size_t DataBuffer::GetDataSize() const {
return data_size_;
}
uint8* DataBuffer::GetWritableData() {
return data_.get();
}
void DataBuffer::SetDataSize(size_t data_size) {
DCHECK(data_size <= buffer_size_);
data_size_ = data_size;
}
size_t DataBuffer::GetBufferSize() const {
return buffer_size_;
}
} // namespace media
|