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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
media / filters / demuxer_manager.h [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_FILTERS_DEMUXER_MANAGER_H_
#define MEDIA_FILTERS_DEMUXER_MANAGER_H_
#include <optional>
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/memory_pressure_listener.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "media/base/data_source.h"
#include "media/base/demuxer.h"
#include "media/base/eme_constants.h"
#include "media/base/media_export.h"
#include "media/base/media_log.h"
#include "media/base/pipeline.h"
#include "media/base/pipeline_status.h"
#include "media/filters/chunk_demuxer.h"
#include "net/storage_access_api/status.h"
#include "url/origin.h"
#if BUILDFLAG(ENABLE_HLS_DEMUXER)
#include "base/threading/sequence_bound.h"
#include "media/filters/hls_data_source_provider.h"
#include "media/filters/hls_media_player_tag_recorder.h"
#include "url/gurl.h"
#endif // BUILDFLAG(ENABLE_HLS_DEMUXER)
namespace media {
enum class HlsFallbackImplementation {
kNone,
kMediaPlayer,
kBuiltinHlsPlayer,
};
// This class manages both an implementation of media::Demuxer and of
// media::DataSource. DataSource, in particular may be null, since both MSE
// playback and Android's MediaPlayerRenderer do not make use of it. In the
// case that DataSource is present, these objects should have a similar
// lifetime, and both must be destroyed on the media thread, so owning them
// together makes sense. Additionally, the demuxer or data source can change
// during the lifetime of the player that owns them, so encapsulating that
// change logic separately lets the media player impl (WMPI) be a bit simpler,
// and dedicate a higher percentage of its complexity to managing playback
// state.
class MEDIA_EXPORT DemuxerManager {
public:
class Client {
public:
virtual void OnEncryptedMediaInitData(
EmeInitDataType init_data_type,
const std::vector<uint8_t>& init_data) = 0;
virtual void OnChunkDemuxerOpened(ChunkDemuxer* demuxer) = 0;
// Called by the data source (for src=) or demuxer (for mse) when loading
// progresses.
// Can be called quite often.
virtual void OnProgress() = 0;
// Used to determine if the client is additionally a client for Android's
// MediaPlayerRenderer, which can inform us if we need to create a
// MediaUrlDemuxer.
virtual bool IsMediaPlayerRendererClient() = 0;
virtual void OnError(media::PipelineStatus status) = 0;
// Used for controlling the client when a demuxer swap happens.
virtual void StopForDemuxerReset() = 0;
virtual void RestartForHls() = 0;
virtual bool IsSecurityOriginCryptographic() const = 0;
#if BUILDFLAG(ENABLE_FFMPEG) || BUILDFLAG(ENABLE_HLS_DEMUXER)
virtual void AddMediaTrack(const media::MediaTrack&) = 0;
virtual void RemoveMediaTrack(const media::MediaTrack&) = 0;
#endif // BUILDFLAG(ENABLE_FFMPEG) || BUILDFLAG(ENABLE_HLS_DEMUXER)
#if BUILDFLAG(ENABLE_HLS_DEMUXER)
virtual base::SequenceBound<HlsDataSourceProvider>
GetHlsDataSourceProvider() = 0;
#endif // BUILDFLAG(ENABLE_HLS_DEMUXER)
// Returns true if playback would be able to start if data is present.
virtual bool CouldPlayIfEnoughData() = 0;
// Given a demuxer, the client should construct an implementation of
// base::trace_event::MemoryDumpProvider for debugging purposes.
virtual void MakeDemuxerThreadDumper(media::Demuxer* demuxer) = 0;
virtual double CurrentTime() const = 0;
// Allows us to set a loaded url on the client, which might happen when we
// handle a redirect as part of a restart for switching to HLS.
virtual void UpdateLoadedUrl(const GURL& url) = 0;
// Allows a seek triggered by a demuxer (mainly used for live content)
virtual void DemuxerRequestsSeek(base::TimeDelta seek_time) = 0;
};
// Demuxer, StartType, IsStreaming, IsStatic
using DemuxerCreatedCB =
base::OnceCallback<PipelineStatus(Demuxer* demuxer,
Pipeline::StartType start_type,
bool /*is_streaming*/,
bool /*is_static*/)>;
DemuxerManager(Client* client,
scoped_refptr<base::SequencedTaskRunner> media_task_runner,
MediaLog* log,
net::SiteForCookies site_for_cookies,
url::Origin top_frame_origin,
net::StorageAccessApiStatus storage_access_api_status,
bool enable_instant_source_buffer_gc,
std::unique_ptr<Demuxer> demuxer_override);
~DemuxerManager();
void InvalidateWeakPtrs();
void OnPipelineError(PipelineStatus error);
void SetLoadedUrl(GURL url);
const GURL& LoadedUrl() const;
#if BUILDFLAG(ENABLE_HLS_DEMUXER) || BUILDFLAG(IS_ANDROID)
void PopulateHlsHistograms(bool cryptographic_url);
PipelineStatus SelectHlsFallbackMechanism(bool cryptographic_url);
#endif // BUILDFLAG(ENABLE_HLS_DEMUXER) || BUILDFLAG(IS_ANDROID)
void DisallowFallback();
// Methods that help manage demuxers
std::optional<double> GetDemuxerDuration();
std::optional<DemuxerType> GetDemuxerType() const;
std::optional<container_names::MediaContainerName> GetContainerForMetrics();
void RespondToDemuxerMemoryUsageReport(base::OnceCallback<void(int64_t)> cb);
void DisableDemuxerCanChangeType();
// Returns a forwarded error/success from |on_demuxer_created|, or an error
// if a demuxer couldn't be created.
PipelineStatus CreateDemuxer(
bool load_media_source,
DataSource::Preload preload,
bool needs_first_frame,
DemuxerCreatedCB on_demuxer_created,
base::flat_map<std::string, std::string> headers);
#if BUILDFLAG(IS_ANDROID)
void SetAllowMediaPlayerRendererCredentials(bool allow);
#endif // BUILDFLAG(IS_ANDROID)
// Methods that help manage or access |data_source_|
DataSource* GetDataSourceForTesting() const;
void SetDataSource(std::unique_ptr<DataSource> data_source);
void OnBufferingHaveEnough(bool enough);
void SetPreload(DataSource::Preload preload);
void StopAndResetClient();
int64_t GetDataSourceMemoryUsage();
void OnDataSourcePlaybackRateChange(double rate, bool paused);
// Signal that a demuxer (or renderer) has caused a duration change.
void DurationChanged();
bool WouldTaintOrigin() const;
bool HasDataSource() const;
bool HasDemuxer() const;
bool HasDemuxerOverride() const;
std::optional<GURL> GetDataSourceUrlAfterRedirects() const;
bool DataSourceFullyBuffered() const;
bool IsStreaming() const;
bool PassedDataSourceTimingAllowOriginCheck() const;
bool IsLiveContent() const;
private:
// Demuxer creation and helper methods
std::unique_ptr<media::Demuxer> CreateChunkDemuxer();
#if BUILDFLAG(ENABLE_FFMPEG)
std::unique_ptr<media::Demuxer> CreateFFmpegDemuxer();
#endif // BUILDFLAG(ENABLE_FFMPEG)
#if BUILDFLAG(ENABLE_HLS_DEMUXER)
std::tuple<raw_ptr<DataSourceInfo>, std::unique_ptr<Demuxer>>
CreateHlsDemuxer();
#endif
#if BUILDFLAG(ENABLE_FFMPEG) || BUILDFLAG(ENABLE_HLS_DEMUXER)
void AddMediaTrack(const media::MediaTrack&);
void RemoveMediaTrack(const media::MediaTrack&);
#endif // BUILDFLAG(ENABLE_FFMPEG) || BUILDFLAG(ENABLE_HLS_DEMUXER)
#if BUILDFLAG(IS_ANDROID)
std::unique_ptr<media::Demuxer> CreateMediaUrlDemuxer(
bool hls_content,
base::flat_map<std::string, std::string> headers);
#endif // BUILDFLAG(IS_ANDROID)
void SetDemuxer(std::unique_ptr<Demuxer> demuxer);
// Memory pressure listener specifically for when using ChunkDemuxer.
void OnMemoryPressure(
base::MemoryPressureListener::MemoryPressureLevel level);
// Trampoline methods for binding with |weak_this_| that call into |client_|.;
void OnEncryptedMediaInitData(EmeInitDataType init_data_type,
const std::vector<uint8_t>& init_data);
void OnChunkDemuxerOpened();
void OnProgress();
void RestartClientForHLS();
void FreeResourcesAfterMediaThreadWait(base::OnceClosure cb);
#if BUILDFLAG(ENABLE_FFMPEG)
void OnFFmpegMediaTracksUpdated(std::unique_ptr<MediaTracks> tracks);
#endif // BUILDFLAG(ENABLE_FFMPEG)
void DemuxerRequestsSeek(base::TimeDelta time);
// This is usually just the WebMediaPlayerImpl.
raw_ptr<Client, DanglingUntriaged> client_;
// The demuxers need access the the media task runner and media log.
const scoped_refptr<base::SequencedTaskRunner> media_task_runner_;
std::unique_ptr<MediaLog> media_log_;
// Android's MediaUrlDemuxer needs access to these.
net::SiteForCookies site_for_cookies_;
url::Origin top_frame_origin_;
#if BUILDFLAG(IS_ANDROID)
net::StorageAccessApiStatus storage_access_api_status_;
#endif // BUILDFLAG(IS_ANDROID)
// When MSE memory pressure based garbage collection is enabled, the
// |enable_instant_source_buffer_gc| controls whether the GC is done
// immediately on memory pressure notification or during the next
// SourceBuffer append (slower, but MSE spec compliant).
bool enable_instant_source_buffer_gc_ = false;
// Used for MediaUrlDemuxer when playing HLS content, as well as
// FFmpegDemuxer in most cases. Also used for creating MemoryDataSource
// objects.
// Note: this may be very large, take care when making copies.
GURL loaded_url_;
// The data source for creating a demuxer. This should be null when using
// ChunkDemuxer.
std::unique_ptr<DataSource> data_source_;
// Holds whichever demuxer implementation is being used.
std::unique_ptr<Demuxer> demuxer_;
#if BUILDFLAG(ENABLE_HLS_DEMUXER)
// Records stats about HLS playbacks in MediaPlayer.
std::unique_ptr<HlsMediaPlayerTagRecorder> media_player_hls_tag_recorder_;
#endif
// Refers to the owned object that can query information about a data source.
// For most playbacks, this is a raw ptr to `data_source_`, and so it is safe,
// since this class also owns that object. For HLS playback, this object is
// the HlsManifestDemuxerEngine, owned by `demuxer_`, so again, it is safe to
// keep a raw ptr here.
raw_ptr<DataSourceInfo> data_source_info_ = nullptr;
// Holds an optional demuxer that can be passed in at time of creation,
// which becomes the default demuxer to use.
std::unique_ptr<Demuxer> demuxer_override_;
// RAII member for notifying demuxers of memory pressure.
std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
#if BUILDFLAG(IS_ANDROID)
// Used to determine whether to allow credentials or not for
// MediaPlayerRenderer.
bool allow_media_player_renderer_credentials_ = false;
#endif // BUILDFLAG(IS_ANDROID)
HlsFallbackImplementation hls_fallback_ = HlsFallbackImplementation::kNone;
// Are we allowed to switch demuxer mid-stream when fallback error codes
// are encountered
bool fallback_allowed_ = true;
// Weak pointer implementation.
base::WeakPtrFactory<DemuxerManager> weak_factory_{this};
};
} // namespace media
#endif // MEDIA_FILTERS_DEMUXER_MANAGER_H_