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

Unified Diff: media/cdm/simple_cdm_buffer.cc

Issue 1673383002: Add allocator interface for use by cdm_adapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add MEDIA_CDM_EXPORT for Windows Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cdm/simple_cdm_buffer.h ('k') | media/media.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/simple_cdm_buffer.cc
diff --git a/media/cdm/simple_cdm_buffer.cc b/media/cdm/simple_cdm_buffer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c5f3b8bbf96d0e88d159cb81d49e299a1ad148f8
--- /dev/null
+++ b/media/cdm/simple_cdm_buffer.cc
@@ -0,0 +1,43 @@
+// Copyright 2015 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 "media/cdm/simple_cdm_buffer.h"
+
+#include "base/logging.h"
+
+namespace media {
+
+// static
+SimpleCdmBuffer* SimpleCdmBuffer::Create(uint32_t capacity) {
+ DCHECK(capacity);
+ return new SimpleCdmBuffer(capacity);
+}
+
+SimpleCdmBuffer::SimpleCdmBuffer(uint32_t capacity)
+ : buffer_(capacity), size_(0) {}
+
+SimpleCdmBuffer::~SimpleCdmBuffer() {}
+
+void SimpleCdmBuffer::Destroy() {
+ delete this;
+}
+
+uint32_t SimpleCdmBuffer::Capacity() const {
+ return buffer_.size();
+}
+
+uint8_t* SimpleCdmBuffer::Data() {
+ return buffer_.data();
+}
+
+void SimpleCdmBuffer::SetSize(uint32_t size) {
+ DCHECK(size <= Capacity());
+ size_ = size > Capacity() ? 0 : size;
+}
+
+uint32_t SimpleCdmBuffer::Size() const {
+ return size_;
+}
+
+} // namespace media
« no previous file with comments | « media/cdm/simple_cdm_buffer.h ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698