| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 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. |
| 4 |
| 5 #include "media/base/bitstream_buffer.h" |
| 6 |
| 7 namespace media { |
| 8 |
| 9 BitstreamBuffer::BitstreamBuffer(int32 id, |
| 10 base::SharedMemoryHandle handle, |
| 11 size_t size) |
| 12 : id_(id), |
| 13 handle_(handle), |
| 14 size_(size), |
| 15 presentation_timestamp_(kNoTimestamp()) {} |
| 16 |
| 17 BitstreamBuffer::BitstreamBuffer(int32 id, |
| 18 base::SharedMemoryHandle handle, |
| 19 size_t size, |
| 20 base::TimeDelta presentation_timestamp) |
| 21 : id_(id), |
| 22 handle_(handle), |
| 23 size_(size), |
| 24 presentation_timestamp_(presentation_timestamp) {} |
| 25 |
| 26 BitstreamBuffer::~BitstreamBuffer() {} |
| 27 |
| 28 void BitstreamBuffer::SetDecryptConfig(const DecryptConfig& decrypt_config) { |
| 29 key_id_ = decrypt_config.key_id(); |
| 30 iv_ = decrypt_config.iv(); |
| 31 subsamples_ = decrypt_config.subsamples(); |
| 32 } |
| 33 |
| 34 } // namespace media |
| OLD | NEW |