blob: 36b8d068bb2374dbf2b1b38405c10a526c0d6b44 [file] [log] [blame]
// 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.
// Note: ported from Chromium commit head: 2de6929
#include "bitstream_buffer.h"
namespace media {
BitstreamBuffer::BitstreamBuffer()
: BitstreamBuffer(-1, base::SharedMemoryHandle(), 0) {}
BitstreamBuffer::BitstreamBuffer(int32_t id,
base::SharedMemoryHandle handle,
size_t size,
off_t offset,
base::TimeDelta presentation_timestamp)
: id_(id),
handle_(handle),
size_(size),
offset_(offset),
presentation_timestamp_(presentation_timestamp) {}
BitstreamBuffer::BitstreamBuffer(const BitstreamBuffer& other) = default;
BitstreamBuffer::~BitstreamBuffer() = default;
} // namespace media