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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
media / cdm / simple_cdm_allocator.cc [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/cdm/simple_cdm_allocator.h"
#include <memory>
#include "base/functional/bind.h"
#include "media/base/video_frame.h"
#include "media/cdm/cdm_helpers.h"
#include "media/cdm/simple_cdm_buffer.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
namespace media {
namespace {
class SimpleCdmVideoFrame final : public VideoFrameImpl {
public:
SimpleCdmVideoFrame() = default;
SimpleCdmVideoFrame(const SimpleCdmVideoFrame&) = delete;
SimpleCdmVideoFrame& operator=(const SimpleCdmVideoFrame&) = delete;
~SimpleCdmVideoFrame() override = default;
// VideoFrameImpl implementation.
scoped_refptr<media::VideoFrame> TransformToVideoFrame(
gfx::Size natural_size) override {
DCHECK(FrameBuffer());
cdm::Buffer* buffer = FrameBuffer();
gfx::Size frame_size(Size().width, Size().height);
scoped_refptr<media::VideoFrame> frame =
media::VideoFrame::WrapExternalYuvData(
PIXEL_FORMAT_I420, frame_size, gfx::Rect(frame_size), natural_size,
Stride(cdm::kYPlane), Stride(cdm::kUPlane), Stride(cdm::kVPlane),
buffer->Data() + PlaneOffset(cdm::kYPlane),
buffer->Data() + PlaneOffset(cdm::kUPlane),
buffer->Data() + PlaneOffset(cdm::kVPlane),
base::Microseconds(Timestamp()));
frame->metadata().power_efficient = false;
// TODO(b/183748013): Set HDRMetadata once supported by the CDM interface.
frame->set_color_space(MediaColorSpace().ToGfxColorSpace());
// The FrameBuffer needs to remain around until |frame| is destroyed.
frame->AddDestructionObserver(
base::BindOnce(&cdm::Buffer::Destroy, base::Unretained(buffer)));
// Clear FrameBuffer so that SimpleCdmVideoFrame no longer has a reference
// to it.
SetFrameBuffer(nullptr);
return frame;
}
};
} // namespace
SimpleCdmAllocator::SimpleCdmAllocator() = default;
SimpleCdmAllocator::~SimpleCdmAllocator() = default;
// Creates a new SimpleCdmBuffer on every request. It does not keep track of
// the memory allocated, so the caller is responsible for calling Destroy()
// on the buffer when it is no longer needed.
cdm::Buffer* SimpleCdmAllocator::CreateCdmBuffer(size_t capacity) {
if (!capacity)
return nullptr;
return SimpleCdmBuffer::Create(capacity);
}
// Creates a new SimpleCdmVideoFrame on every request.
std::unique_ptr<VideoFrameImpl> SimpleCdmAllocator::CreateCdmVideoFrame() {
return std::make_unique<SimpleCdmVideoFrame>();
}
} // namespace media