ToolbarOriginChipView is dead; remove the suppression for it.
[chromium-blink-merge.git] / media / base / decoder_buffer.cc
blob2059817f27a05ef6b99b319129cf427773c94084
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "media/base/decoder_buffer.h"
7 #include "base/logging.h"
8 #include "media/base/buffers.h"
9 #include "media/base/decrypt_config.h"
11 namespace media {
13 DecoderBuffer::DecoderBuffer(int size)
14 : size_(size),
15 side_data_size_(0) {
16 Initialize();
19 DecoderBuffer::DecoderBuffer(const uint8* data, int size,
20 const uint8* side_data, int side_data_size)
21 : size_(size),
22 side_data_size_(side_data_size) {
23 if (!data) {
24 CHECK_EQ(size_, 0);
25 CHECK(!side_data);
26 return;
29 Initialize();
30 memcpy(data_.get(), data, size_);
31 if (side_data)
32 memcpy(side_data_.get(), side_data, side_data_size_);
35 DecoderBuffer::~DecoderBuffer() {}
37 void DecoderBuffer::Initialize() {
38 CHECK_GE(size_, 0);
39 data_.reset(reinterpret_cast<uint8*>(
40 base::AlignedAlloc(size_ + kPaddingSize, kAlignmentSize)));
41 memset(data_.get() + size_, 0, kPaddingSize);
42 if (side_data_size_ > 0) {
43 side_data_.reset(reinterpret_cast<uint8*>(
44 base::AlignedAlloc(side_data_size_ + kPaddingSize, kAlignmentSize)));
45 memset(side_data_.get() + side_data_size_, 0, kPaddingSize);
47 splice_timestamp_ = kNoTimestamp();
50 // static
51 scoped_refptr<DecoderBuffer> DecoderBuffer::CopyFrom(const uint8* data,
52 int data_size) {
53 // If you hit this CHECK you likely have a bug in a demuxer. Go fix it.
54 CHECK(data);
55 return make_scoped_refptr(new DecoderBuffer(data, data_size, NULL, 0));
58 // static
59 scoped_refptr<DecoderBuffer> DecoderBuffer::CopyFrom(const uint8* data,
60 int data_size,
61 const uint8* side_data,
62 int side_data_size) {
63 // If you hit this CHECK you likely have a bug in a demuxer. Go fix it.
64 CHECK(data);
65 CHECK(side_data);
66 return make_scoped_refptr(new DecoderBuffer(data, data_size,
67 side_data, side_data_size));
70 // static
71 scoped_refptr<DecoderBuffer> DecoderBuffer::CreateEOSBuffer() {
72 return make_scoped_refptr(new DecoderBuffer(NULL, 0, NULL, 0));
75 std::string DecoderBuffer::AsHumanReadableString() {
76 if (end_of_stream()) {
77 return "end of stream";
80 std::ostringstream s;
81 s << "timestamp: " << timestamp_.InMicroseconds()
82 << " duration: " << duration_.InMicroseconds()
83 << " size: " << size_
84 << " side_data_size: " << side_data_size_
85 << " encrypted: " << (decrypt_config_ != NULL)
86 << " discard_padding (ms): (" << discard_padding_.first.InMilliseconds()
87 << ", " << discard_padding_.second.InMilliseconds() << ")";
88 return s.str();
91 } // namespace media