forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault_decoder_factory.cc
174 lines (145 loc) · 5.63 KB
/
default_decoder_factory.cc
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// Copyright 2018 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/renderers/default_decoder_factory.h"
#include <memory>
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/sequenced_task_runner.h"
#include "build/build_config.h"
#include "build/buildflag.h"
#include "components/viz/common/gpu/raster_context_provider.h"
#include "media/base/decoder_factory.h"
#include "media/base/media_switches.h"
#include "media/media_buildflags.h"
#include "media/video/gpu_video_accelerator_factories.h"
#include "third_party/libaom/libaom_buildflags.h"
#if !defined(OS_ANDROID)
#include "media/filters/decrypting_audio_decoder.h"
#include "media/filters/decrypting_video_decoder.h"
#endif
#if defined(OS_FUCHSIA)
// TODO(crbug.com/1117629): Remove this dependency and update include_rules
// that allow it.
#include "fuchsia/engine/switches.h"
#include "media/filters/fuchsia/fuchsia_video_decoder.h"
#endif
#if BUILDFLAG(ENABLE_DAV1D_DECODER)
#include "media/filters/dav1d_video_decoder.h"
#endif
#if BUILDFLAG(ENABLE_FFMPEG)
#include "media/filters/ffmpeg_audio_decoder.h"
#endif
#if BUILDFLAG(ENABLE_FFMPEG_VIDEO_DECODERS)
#include "media/filters/ffmpeg_video_decoder.h"
#endif
#if BUILDFLAG(ENABLE_LIBVPX)
#include "media/filters/vpx_video_decoder.h"
#endif
#if BUILDFLAG(ENABLE_LIBGAV1_DECODER)
#include "media/filters/gav1_video_decoder.h"
#endif
namespace media {
DefaultDecoderFactory::DefaultDecoderFactory(
std::unique_ptr<DecoderFactory> external_decoder_factory)
: external_decoder_factory_(std::move(external_decoder_factory)) {}
DefaultDecoderFactory::~DefaultDecoderFactory() = default;
void DefaultDecoderFactory::CreateAudioDecoders(
scoped_refptr<base::SequencedTaskRunner> task_runner,
MediaLog* media_log,
std::vector<std::unique_ptr<AudioDecoder>>* audio_decoders) {
base::AutoLock auto_lock(shutdown_lock_);
if (is_shutdown_)
return;
#if !defined(OS_ANDROID)
// DecryptingAudioDecoder is only needed in External Clear Key testing to
// cover the audio decrypt-and-decode path.
if (base::FeatureList::IsEnabled(kExternalClearKeyForTesting)) {
audio_decoders->push_back(
std::make_unique<DecryptingAudioDecoder>(task_runner, media_log));
}
#endif
#if BUILDFLAG(ENABLE_FFMPEG)
audio_decoders->push_back(
std::make_unique<FFmpegAudioDecoder>(task_runner, media_log));
#endif
if (external_decoder_factory_) {
external_decoder_factory_->CreateAudioDecoders(task_runner, media_log,
audio_decoders);
}
}
void DefaultDecoderFactory::CreateVideoDecoders(
scoped_refptr<base::SequencedTaskRunner> task_runner,
GpuVideoAcceleratorFactories* gpu_factories,
MediaLog* media_log,
RequestOverlayInfoCB request_overlay_info_cb,
const gfx::ColorSpace& target_color_space,
std::vector<std::unique_ptr<VideoDecoder>>* video_decoders) {
base::AutoLock auto_lock(shutdown_lock_);
if (is_shutdown_)
return;
#if !defined(OS_ANDROID)
video_decoders->push_back(
std::make_unique<DecryptingVideoDecoder>(task_runner, media_log));
#endif
// Perfer an external decoder since one will only exist if it is hardware
// accelerated.
if (external_decoder_factory_ && gpu_factories &&
gpu_factories->IsGpuVideoAcceleratorEnabled()) {
// |gpu_factories_| requires that its entry points be called on its
// |GetTaskRunner()|. Since |pipeline_| will own decoders created from the
// factories, require that their message loops are identical.
DCHECK_EQ(gpu_factories->GetTaskRunner(), task_runner);
external_decoder_factory_->CreateVideoDecoders(
task_runner, gpu_factories, media_log,
std::move(request_overlay_info_cb), target_color_space, video_decoders);
}
#if defined(OS_FUCHSIA)
// TODO(crbug.com/1122116): Minimize Fuchsia-specific code paths.
if (gpu_factories && gpu_factories->IsGpuVideoAcceleratorEnabled()) {
auto* context_provider = gpu_factories->GetMediaContextProvider();
// GetMediaContextProvider() may return nullptr when the context was lost
// (e.g. after GPU process crash). To handle this case RenderThreadImpl
// creates a new GpuVideoAcceleratorFactories with a new ContextProvider
// instance, but there is no way to get it here. For now just don't add
// FuchsiaVideoDecoder in that scenario.
//
// TODO(crbug.com/580386): Handle context loss properly.
if (context_provider) {
video_decoders->push_back(CreateFuchsiaVideoDecoder(context_provider));
} else {
DLOG(ERROR)
<< "Can't create FuchsiaVideoDecoder due to GPU context loss.";
}
}
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableSoftwareVideoDecoders)) {
// Bypass software codec registration.
return;
}
#endif
#if BUILDFLAG(ENABLE_LIBVPX)
video_decoders->push_back(std::make_unique<OffloadingVpxVideoDecoder>());
#endif
#if BUILDFLAG(ENABLE_LIBGAV1_DECODER)
if (base::FeatureList::IsEnabled(kGav1VideoDecoder)) {
video_decoders->push_back(
std::make_unique<OffloadingGav1VideoDecoder>(media_log));
} else
#endif // BUILDFLAG(ENABLE_LIBGAV1_DECODER)
{
#if BUILDFLAG(ENABLE_DAV1D_DECODER)
video_decoders->push_back(
std::make_unique<OffloadingDav1dVideoDecoder>(media_log));
#endif
}
#if BUILDFLAG(ENABLE_FFMPEG_VIDEO_DECODERS)
video_decoders->push_back(std::make_unique<FFmpegVideoDecoder>(media_log));
#endif
}
void DefaultDecoderFactory::Shutdown() {
base::AutoLock auto_lock(shutdown_lock_);
external_decoder_factory_.reset();
is_shutdown_ = true;
}
} // namespace media