summaryrefslogtreecommitdiff
path: root/chromium/media/base/bitstream_buffer.cc
blob: f4548494e1156fbe59233a73eefe6656630c8c06 (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
// 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 "base/numerics/checked_math.h"
#include "media/base/decrypt_config.h"

namespace media {

BitstreamBuffer::BitstreamBuffer()
    : BitstreamBuffer(-1, base::UnsafeSharedMemoryRegion(), 0) {}

BitstreamBuffer::BitstreamBuffer(int32_t id,
                                 base::UnsafeSharedMemoryRegion region,
                                 size_t size,
                                 uint64_t offset,
                                 base::TimeDelta presentation_timestamp)
    : id_(id),
      region_(std::move(region)),
      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() {
  return ToDecoderBuffer(0, size_);
}
scoped_refptr<DecoderBuffer> BitstreamBuffer::ToDecoderBuffer(off_t offset,
                                                              size_t size) {
  // We do allow mapping beyond the bounds of the original specified size in
  // order to deal with the OEMCrypto secure buffer format, but we do ensure
  // it stays within the shared memory region.
  base::CheckedNumeric<off_t> total_range(offset_);
  total_range += offset;
  if (!total_range.IsValid())
    return nullptr;
  const off_t final_offset = total_range.ValueOrDie();
  total_range += base::checked_cast<off_t>(size);
  if (!total_range.IsValid<size_t>())
    return nullptr;
  if (total_range.ValueOrDie<size_t>() > region_.GetSize())
    return nullptr;
  scoped_refptr<DecoderBuffer> buffer = DecoderBuffer::FromSharedMemoryRegion(
      std::move(region_), final_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