summaryrefslogtreecommitdiff
path: root/chromium/media/base/bitstream_buffer.cc
blob: e434157e7f03de286f1f4a63df93772aa3ce71cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// 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/base/bitstream_buffer.h"

#include "media/base/decrypt_config.h"

namespace media {

BitstreamBuffer::BitstreamBuffer()
    : BitstreamBuffer(-1, base::subtle::PlatformSharedMemoryRegion(), 0) {}

BitstreamBuffer::BitstreamBuffer(
    int32_t id,
    base::subtle::PlatformSharedMemoryRegion region,
    size_t size,
    off_t offset,
    base::TimeDelta presentation_timestamp)
    : id_(id),
      region_(std::move(region)),
      size_(size),
      offset_(offset),
      presentation_timestamp_(presentation_timestamp) {}

BitstreamBuffer::BitstreamBuffer(int32_t id,
                                 base::SharedMemoryHandle handle,
                                 bool read_only,
                                 size_t size,
                                 off_t offset,
                                 base::TimeDelta presentation_timestamp)
    : id_(id),
      region_(
          base::subtle::PlatformSharedMemoryRegion::TakeFromSharedMemoryHandle(
              handle.Duplicate(),
              read_only
                  ? base::subtle::PlatformSharedMemoryRegion::Mode::kReadOnly
                  : base::subtle::PlatformSharedMemoryRegion::Mode::kUnsafe)),
      size_(size),
      offset_(offset),
      presentation_timestamp_(presentation_timestamp) {}

BitstreamBuffer::BitstreamBuffer(BitstreamBuffer&&) = default;
BitstreamBuffer& BitstreamBuffer::operator=(BitstreamBuffer&&) = default;

BitstreamBuffer::~BitstreamBuffer() = default;

scoped_refptr<DecoderBuffer> BitstreamBuffer::ToDecoderBuffer() {
  scoped_refptr<DecoderBuffer> buffer =
      DecoderBuffer::FromSharedMemoryRegion(std::move(region_), offset_, size_);
  if (!buffer)
    return nullptr;
  buffer->set_timestamp(presentation_timestamp_);
  if (!key_id_.empty()) {
    buffer->set_decrypt_config(
        DecryptConfig::CreateCencConfig(key_id_, iv_, subsamples_));
  }
  return buffer;
}

void BitstreamBuffer::SetDecryptionSettings(
    const std::string& key_id,
    const std::string& iv,
    const std::vector<SubsampleEntry>& subsamples) {
  key_id_ = key_id;
  iv_ = iv;
  subsamples_ = subsamples;
}

}  // namespace media