Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / media / filters / chunk_demuxer.h
blob2ca89d6c71652955e1768705b2403afcf8231798
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MEDIA_FILTERS_CHUNK_DEMUXER_H_
6 #define MEDIA_FILTERS_CHUNK_DEMUXER_H_
8 #include <deque>
9 #include <map>
10 #include <string>
11 #include <utility>
12 #include <vector>
14 #include "base/synchronization/lock.h"
15 #include "media/base/byte_queue.h"
16 #include "media/base/demuxer.h"
17 #include "media/base/ranges.h"
18 #include "media/base/stream_parser.h"
19 #include "media/filters/source_buffer_stream.h"
21 namespace media {
23 class FFmpegURLProtocol;
24 class SourceState;
26 class ChunkDemuxerStream : public DemuxerStream {
27 public:
28 typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
30 explicit ChunkDemuxerStream(Type type, bool splice_frames_enabled);
31 virtual ~ChunkDemuxerStream();
33 // ChunkDemuxerStream control methods.
34 void StartReturningData();
35 void AbortReads();
36 void CompletePendingReadIfPossible();
37 void Shutdown();
39 // SourceBufferStream manipulation methods.
40 void Seek(base::TimeDelta time);
41 bool IsSeekWaitingForData() const;
43 // Add buffers to this stream. Buffers are stored in SourceBufferStreams,
44 // which handle ordering and overlap resolution.
45 // Returns true if buffers were successfully added.
46 bool Append(const StreamParser::BufferQueue& buffers);
48 // Removes buffers between |start| and |end| according to the steps
49 // in the "Coded Frame Removal Algorithm" in the Media Source
50 // Extensions Spec.
51 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#sourcebuffer-coded-frame-removal
53 // |duration| is the current duration of the presentation. It is
54 // required by the computation outlined in the spec.
55 void Remove(base::TimeDelta start, base::TimeDelta end,
56 base::TimeDelta duration);
58 // Signal to the stream that duration has changed to |duration|.
59 void OnSetDuration(base::TimeDelta duration);
61 // Returns the range of buffered data in this stream, capped at |duration|.
62 Ranges<base::TimeDelta> GetBufferedRanges(base::TimeDelta duration) const;
64 // Returns the duration of the buffered data.
65 // Returns base::TimeDelta() if the stream has no buffered data.
66 base::TimeDelta GetBufferedDuration() const;
68 // Signal to the stream that buffers handed in through subsequent calls to
69 // Append() belong to a media segment that starts at |start_timestamp|.
70 void OnNewMediaSegment(base::TimeDelta start_timestamp);
72 // Called when midstream config updates occur.
73 // Returns true if the new config is accepted.
74 // Returns false if the new config should trigger an error.
75 bool UpdateAudioConfig(const AudioDecoderConfig& config, const LogCB& log_cb);
76 bool UpdateVideoConfig(const VideoDecoderConfig& config, const LogCB& log_cb);
77 void UpdateTextConfig(const TextTrackConfig& config, const LogCB& log_cb);
79 void MarkEndOfStream();
80 void UnmarkEndOfStream();
82 // DemuxerStream methods.
83 virtual void Read(const ReadCB& read_cb) OVERRIDE;
84 virtual Type type() OVERRIDE;
85 virtual void EnableBitstreamConverter() OVERRIDE;
86 virtual AudioDecoderConfig audio_decoder_config() OVERRIDE;
87 virtual VideoDecoderConfig video_decoder_config() OVERRIDE;
88 virtual bool SupportsConfigChanges() OVERRIDE;
90 // Returns the text track configuration. It is an error to call this method
91 // if type() != TEXT.
92 TextTrackConfig text_track_config();
94 // Sets the memory limit, in bytes, on the SourceBufferStream.
95 void set_memory_limit_for_testing(int memory_limit) {
96 stream_->set_memory_limit_for_testing(memory_limit);
99 bool supports_partial_append_window_trimming() const {
100 return partial_append_window_trimming_enabled_;
103 private:
104 enum State {
105 UNINITIALIZED,
106 RETURNING_DATA_FOR_READS,
107 RETURNING_ABORT_FOR_READS,
108 SHUTDOWN,
111 // Assigns |state_| to |state|
112 void ChangeState_Locked(State state);
114 void CompletePendingReadIfPossible_Locked();
116 // Specifies the type of the stream.
117 Type type_;
119 scoped_ptr<SourceBufferStream> stream_;
121 mutable base::Lock lock_;
122 State state_;
123 ReadCB read_cb_;
124 bool splice_frames_enabled_;
125 bool partial_append_window_trimming_enabled_;
127 DISALLOW_IMPLICIT_CONSTRUCTORS(ChunkDemuxerStream);
130 // Demuxer implementation that allows chunks of media data to be passed
131 // from JavaScript to the media stack.
132 class MEDIA_EXPORT ChunkDemuxer : public Demuxer {
133 public:
134 enum Status {
135 kOk, // ID added w/o error.
136 kNotSupported, // Type specified is not supported.
137 kReachedIdLimit, // Reached ID limit. We can't handle any more IDs.
140 // |open_cb| Run when Initialize() is called to signal that the demuxer
141 // is ready to receive media data via AppenData().
142 // |need_key_cb| Run when the demuxer determines that an encryption key is
143 // needed to decrypt the content.
144 // |enable_text| Process inband text tracks in the normal way when true,
145 // otherwise ignore them.
146 // |log_cb| Run when parsing error messages need to be logged to the error
147 // console.
148 // |splice_frames_enabled| Indicates that it's okay to generate splice frames
149 // per the MSE specification. Renderers must understand DecoderBuffer's
150 // splice_timestamp() field.
151 ChunkDemuxer(const base::Closure& open_cb,
152 const NeedKeyCB& need_key_cb,
153 const LogCB& log_cb,
154 bool splice_frames_enabled);
155 virtual ~ChunkDemuxer();
157 // Demuxer implementation.
158 virtual void Initialize(DemuxerHost* host,
159 const PipelineStatusCB& cb,
160 bool enable_text_tracks) OVERRIDE;
161 virtual void Stop(const base::Closure& callback) OVERRIDE;
162 virtual void Seek(base::TimeDelta time, const PipelineStatusCB& cb) OVERRIDE;
163 virtual void OnAudioRendererDisabled() OVERRIDE;
164 virtual DemuxerStream* GetStream(DemuxerStream::Type type) OVERRIDE;
165 virtual base::TimeDelta GetStartTime() const OVERRIDE;
166 virtual base::Time GetTimelineOffset() const OVERRIDE;
167 virtual Liveness GetLiveness() const OVERRIDE;
169 // Methods used by an external object to control this demuxer.
171 // Indicates that a new Seek() call is on its way. Any pending Reads on the
172 // DemuxerStream objects should be aborted immediately inside this call and
173 // future Read calls should return kAborted until the Seek() call occurs.
174 // This method MUST ALWAYS be called before Seek() is called to signal that
175 // the next Seek() call represents the seek point we actually want to return
176 // data for.
177 // |seek_time| - The presentation timestamp for the seek that triggered this
178 // call. It represents the most recent position the caller is trying to seek
179 // to.
180 void StartWaitingForSeek(base::TimeDelta seek_time);
182 // Indicates that a Seek() call is on its way, but another seek has been
183 // requested that will override the impending Seek() call. Any pending Reads
184 // on the DemuxerStream objects should be aborted immediately inside this call
185 // and future Read calls should return kAborted until the next
186 // StartWaitingForSeek() call. This method also arranges for the next Seek()
187 // call received before a StartWaitingForSeek() call to immediately call its
188 // callback without waiting for any data.
189 // |seek_time| - The presentation timestamp for the seek request that
190 // triggered this call. It represents the most recent position the caller is
191 // trying to seek to.
192 void CancelPendingSeek(base::TimeDelta seek_time);
194 // Registers a new |id| to use for AppendData() calls. |type| indicates
195 // the MIME type for the data that we intend to append for this ID.
196 // |use_legacy_frame_processor| determines which of LegacyFrameProcessor or
197 // a (not yet implemented) more compliant frame processor to use to process
198 // parsed frames from AppendData() calls.
199 // TODO(wolenetz): Enable usage of new frame processor based on this flag.
200 // See http://crbug.com/249422.
201 // kOk is returned if the demuxer has enough resources to support another ID
202 // and supports the format indicated by |type|.
203 // kNotSupported is returned if |type| is not a supported format.
204 // kReachedIdLimit is returned if the demuxer cannot handle another ID right
205 // now.
206 Status AddId(const std::string& id, const std::string& type,
207 std::vector<std::string>& codecs,
208 const bool use_legacy_frame_processor);
210 // Removed an ID & associated resources that were previously added with
211 // AddId().
212 void RemoveId(const std::string& id);
214 // Gets the currently buffered ranges for the specified ID.
215 Ranges<base::TimeDelta> GetBufferedRanges(const std::string& id) const;
217 // Appends media data to the source buffer associated with |id|, applying
218 // and possibly updating |*timestamp_offset| during coded frame processing.
219 // |append_window_start| and |append_window_end| correspond to the MSE spec's
220 // similarly named source buffer attributes that are used in coded frame
221 // processing.
222 void AppendData(const std::string& id, const uint8* data, size_t length,
223 base::TimeDelta append_window_start,
224 base::TimeDelta append_window_end,
225 base::TimeDelta* timestamp_offset);
227 // Aborts parsing the current segment and reset the parser to a state where
228 // it can accept a new segment.
229 void Abort(const std::string& id);
231 // Remove buffers between |start| and |end| for the source buffer
232 // associated with |id|.
233 void Remove(const std::string& id, base::TimeDelta start,
234 base::TimeDelta end);
236 // Returns the current presentation duration.
237 double GetDuration();
238 double GetDuration_Locked();
240 // Notifies the demuxer that the duration of the media has changed to
241 // |duration|.
242 void SetDuration(double duration);
244 // Returns true if the source buffer associated with |id| is currently parsing
245 // a media segment, or false otherwise.
246 bool IsParsingMediaSegment(const std::string& id);
248 // Set the append mode to be applied to subsequent buffers appended to the
249 // source buffer associated with |id|. If |sequence_mode| is true, caller
250 // is requesting "sequence" mode. Otherwise, caller is requesting "segments"
251 // mode.
252 void SetSequenceMode(const std::string& id, bool sequence_mode);
254 // Called to signal changes in the "end of stream"
255 // state. UnmarkEndOfStream() must not be called if a matching
256 // MarkEndOfStream() has not come before it.
257 void MarkEndOfStream(PipelineStatus status);
258 void UnmarkEndOfStream();
260 void Shutdown();
262 // Sets the memory limit on each stream. |memory_limit| is the
263 // maximum number of bytes each stream is allowed to hold in its buffer.
264 void SetMemoryLimitsForTesting(int memory_limit);
266 // Returns the ranges representing the buffered data in the demuxer.
267 // TODO(wolenetz): Remove this method once MediaSourceDelegate no longer
268 // requires it for doing hack browser seeks to I-frame on Android. See
269 // http://crbug.com/304234.
270 Ranges<base::TimeDelta> GetBufferedRanges() const;
272 private:
273 enum State {
274 WAITING_FOR_INIT,
275 INITIALIZING,
276 INITIALIZED,
277 ENDED,
278 PARSE_ERROR,
279 SHUTDOWN,
282 void ChangeState_Locked(State new_state);
284 // Reports an error and puts the demuxer in a state where it won't accept more
285 // data.
286 void ReportError_Locked(PipelineStatus error);
288 // Returns true if any stream has seeked to a time without buffered data.
289 bool IsSeekWaitingForData_Locked() const;
291 // Returns true if all streams can successfully call EndOfStream,
292 // false if any can not.
293 bool CanEndOfStream_Locked() const;
295 // SourceState callbacks.
296 void OnSourceInitDone(bool success,
297 const StreamParser::InitParameters& params);
299 // Creates a DemuxerStream for the specified |type|.
300 // Returns a new ChunkDemuxerStream instance if a stream of this type
301 // has not been created before. Returns NULL otherwise.
302 ChunkDemuxerStream* CreateDemuxerStream(DemuxerStream::Type type);
304 void OnNewTextTrack(ChunkDemuxerStream* text_stream,
305 const TextTrackConfig& config);
307 // Returns true if |source_id| is valid, false otherwise.
308 bool IsValidId(const std::string& source_id) const;
310 // Increases |duration_| to |new_duration|, if |new_duration| is higher.
311 void IncreaseDurationIfNecessary(base::TimeDelta new_duration);
313 // Decreases |duration_| if the buffered region is less than |duration_| when
314 // EndOfStream() is called.
315 void DecreaseDurationIfNecessary();
317 // Sets |duration_| to |new_duration|, sets |user_specified_duration_| to -1
318 // and notifies |host_|.
319 void UpdateDuration(base::TimeDelta new_duration);
321 // Returns the ranges representing the buffered data in the demuxer.
322 Ranges<base::TimeDelta> GetBufferedRanges_Locked() const;
324 // Start returning data on all DemuxerStreams.
325 void StartReturningData();
327 // Aborts pending reads on all DemuxerStreams.
328 void AbortPendingReads();
330 // Completes any pending reads if it is possible to do so.
331 void CompletePendingReadsIfPossible();
333 // Seeks all SourceBufferStreams to |seek_time|.
334 void SeekAllSources(base::TimeDelta seek_time);
336 // Shuts down all DemuxerStreams by calling Shutdown() on
337 // all objects in |source_state_map_|.
338 void ShutdownAllStreams();
340 mutable base::Lock lock_;
341 State state_;
342 bool cancel_next_seek_;
344 DemuxerHost* host_;
345 base::Closure open_cb_;
346 NeedKeyCB need_key_cb_;
347 bool enable_text_;
348 // Callback used to report error strings that can help the web developer
349 // figure out what is wrong with the content.
350 LogCB log_cb_;
352 PipelineStatusCB init_cb_;
353 // Callback to execute upon seek completion.
354 // TODO(wolenetz/acolwell): Protect against possible double-locking by first
355 // releasing |lock_| before executing this callback. See
356 // http://crbug.com/308226
357 PipelineStatusCB seek_cb_;
359 scoped_ptr<ChunkDemuxerStream> audio_;
360 scoped_ptr<ChunkDemuxerStream> video_;
362 // Keeps |audio_| alive when audio has been disabled.
363 scoped_ptr<ChunkDemuxerStream> disabled_audio_;
365 base::TimeDelta duration_;
367 // The duration passed to the last SetDuration(). If
368 // SetDuration() is never called or an AppendData() call or
369 // a EndOfStream() call changes |duration_|, then this
370 // variable is set to < 0 to indicate that the |duration_| represents
371 // the actual duration instead of a user specified value.
372 double user_specified_duration_;
374 base::Time timeline_offset_;
375 Liveness liveness_;
377 typedef std::map<std::string, SourceState*> SourceStateMap;
378 SourceStateMap source_state_map_;
380 // Used to ensure that (1) config data matches the type and codec provided in
381 // AddId(), (2) only 1 audio and 1 video sources are added, and (3) ids may be
382 // removed with RemoveID() but can not be re-added (yet).
383 std::string source_id_audio_;
384 std::string source_id_video_;
386 // Indicates that splice frame generation is enabled.
387 const bool splice_frames_enabled_;
389 DISALLOW_COPY_AND_ASSIGN(ChunkDemuxer);
392 } // namespace media
394 #endif // MEDIA_FILTERS_CHUNK_DEMUXER_H_