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

Unified Diff: media/base/data_buffer.cc

Issue 13682: Checking in media::DataBuffer, a simple implementation of WritableBufferInterface. (Closed)
Patch Set: it try Created 12 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/data_buffer.h ('k') | media/base/data_buffer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/data_buffer.cc
diff --git a/media/base/data_buffer.cc b/media/base/data_buffer.cc
new file mode 100755
index 0000000000000000000000000000000000000000..c5c290dff6c5fcff143b86f587c9e44377f5fbc4
--- /dev/null
+++ b/media/base/data_buffer.cc
@@ -0,0 +1,62 @@
+// Copyright (c) 2006-2008 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(char* data, size_t buffer_size, size_t data_size,
+ int64 timestamp, int64 duration)
+ : data_(data),
+ buffer_size_(buffer_size),
+ data_size_(data_size),
+ timestamp_(timestamp),
+ duration_(duration) {
+ DCHECK(data);
+ DCHECK(buffer_size >= 0);
+ DCHECK(data_size <= buffer_size);
+}
+
+DataBuffer::~DataBuffer() {
+ delete [] data_;
+}
+
+int64 DataBuffer::GetTimestamp() const {
+ return timestamp_;
+}
+
+void DataBuffer::SetTimestamp(int64 timestamp) {
+ timestamp_ = timestamp;
+}
+
+int64 DataBuffer::GetDuration() const {
+ return duration_;
+}
+
+void DataBuffer::SetDuration(int64 duration) {
+ duration_ = duration;
+}
+
+const char* DataBuffer::GetData() const {
+ return data_;
+}
+
+size_t DataBuffer::GetDataSize() const {
+ return data_size_;
+}
+
+char* DataBuffer::GetWritableData() {
+ return data_;
+}
+
+size_t DataBuffer::GetBufferSize() const {
+ return buffer_size_;
+}
+
+void DataBuffer::SetDataSize(size_t data_size) {
+ data_size_ = data_size;
+}
+
+} // namespace media
« no previous file with comments | « media/base/data_buffer.h ('k') | media/base/data_buffer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698