chunk_demuxer.h revision 5c02ac1a9c1b504631c0a3d2b6e737b5d738bae1
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.
4
5#ifndef MEDIA_FILTERS_CHUNK_DEMUXER_H_
6#define MEDIA_FILTERS_CHUNK_DEMUXER_H_
7
8#include <deque>
9#include <map>
10#include <string>
11#include <utility>
12#include <vector>
13
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"
20
21namespace media {
22
23class FFmpegURLProtocol;
24class SourceState;
25
26class ChunkDemuxerStream : public DemuxerStream {
27 public:
28  typedef std::deque<scoped_refptr<StreamParserBuffer> > BufferQueue;
29
30  explicit ChunkDemuxerStream(Type type, bool splice_frames_enabled);
31  virtual ~ChunkDemuxerStream();
32
33  // ChunkDemuxerStream control methods.
34  void StartReturningData();
35  void AbortReads();
36  void CompletePendingReadIfPossible();
37  void Shutdown();
38
39  // SourceBufferStream manipulation methods.
40  void Seek(base::TimeDelta time);
41  bool IsSeekWaitingForData() const;
42
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);
47
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
52  //
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);
57
58  // Signal to the stream that duration has changed to |duration|.
59  void OnSetDuration(base::TimeDelta duration);
60
61  // Returns the range of buffered data in this stream, capped at |duration|.
62  Ranges<base::TimeDelta> GetBufferedRanges(base::TimeDelta duration) const;
63
64  // Returns the duration of the buffered data.
65  // Returns base::TimeDelta() if the stream has no buffered data.
66  base::TimeDelta GetBufferedDuration() const;
67
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);
71
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);
78
79  void MarkEndOfStream();
80  void UnmarkEndOfStream();
81
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;
89
90  // Returns the text track configuration.  It is an error to call this method
91  // if type() != TEXT.
92  TextTrackConfig text_track_config();
93
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);
97  }
98
99 private:
100  enum State {
101    UNINITIALIZED,
102    RETURNING_DATA_FOR_READS,
103    RETURNING_ABORT_FOR_READS,
104    SHUTDOWN,
105  };
106
107  // Assigns |state_| to |state|
108  void ChangeState_Locked(State state);
109
110  void CompletePendingReadIfPossible_Locked();
111
112  // Specifies the type of the stream.
113  Type type_;
114
115  scoped_ptr<SourceBufferStream> stream_;
116
117  mutable base::Lock lock_;
118  State state_;
119  ReadCB read_cb_;
120  const bool splice_frames_enabled_;
121
122  DISALLOW_IMPLICIT_CONSTRUCTORS(ChunkDemuxerStream);
123};
124
125// Demuxer implementation that allows chunks of media data to be passed
126// from JavaScript to the media stack.
127class MEDIA_EXPORT ChunkDemuxer : public Demuxer {
128 public:
129  enum Status {
130    kOk,              // ID added w/o error.
131    kNotSupported,    // Type specified is not supported.
132    kReachedIdLimit,  // Reached ID limit. We can't handle any more IDs.
133  };
134
135  // |open_cb| Run when Initialize() is called to signal that the demuxer
136  //   is ready to receive media data via AppenData().
137  // |need_key_cb| Run when the demuxer determines that an encryption key is
138  //   needed to decrypt the content.
139  // |enable_text| Process inband text tracks in the normal way when true,
140  //   otherwise ignore them.
141  // |log_cb| Run when parsing error messages need to be logged to the error
142  //   console.
143  // |splice_frames_enabled| Indicates that it's okay to generate splice frames
144  //   per the MSE specification.  Renderers must understand DecoderBuffer's
145  //   splice_timestamp() field.
146  ChunkDemuxer(const base::Closure& open_cb,
147               const NeedKeyCB& need_key_cb,
148               const LogCB& log_cb,
149               bool splice_frames_enabled);
150  virtual ~ChunkDemuxer();
151
152  // Demuxer implementation.
153  virtual void Initialize(DemuxerHost* host,
154                          const PipelineStatusCB& cb,
155                          bool enable_text_tracks) OVERRIDE;
156  virtual void Stop(const base::Closure& callback) OVERRIDE;
157  virtual void Seek(base::TimeDelta time, const PipelineStatusCB&  cb) OVERRIDE;
158  virtual void OnAudioRendererDisabled() OVERRIDE;
159  virtual DemuxerStream* GetStream(DemuxerStream::Type type) OVERRIDE;
160  virtual base::TimeDelta GetStartTime() const OVERRIDE;
161  virtual base::Time GetTimelineOffset() const OVERRIDE;
162  virtual Liveness GetLiveness() const OVERRIDE;
163
164  // Methods used by an external object to control this demuxer.
165  //
166  // Indicates that a new Seek() call is on its way. Any pending Reads on the
167  // DemuxerStream objects should be aborted immediately inside this call and
168  // future Read calls should return kAborted until the Seek() call occurs.
169  // This method MUST ALWAYS be called before Seek() is called to signal that
170  // the next Seek() call represents the seek point we actually want to return
171  // data for.
172  // |seek_time| - The presentation timestamp for the seek that triggered this
173  // call. It represents the most recent position the caller is trying to seek
174  // to.
175  void StartWaitingForSeek(base::TimeDelta seek_time);
176
177  // Indicates that a Seek() call is on its way, but another seek has been
178  // requested that will override the impending Seek() call. Any pending Reads
179  // on the DemuxerStream objects should be aborted immediately inside this call
180  // and future Read calls should return kAborted until the next
181  // StartWaitingForSeek() call. This method also arranges for the next Seek()
182  // call received before a StartWaitingForSeek() call to immediately call its
183  // callback without waiting for any data.
184  // |seek_time| - The presentation timestamp for the seek request that
185  // triggered this call. It represents the most recent position the caller is
186  // trying to seek to.
187  void CancelPendingSeek(base::TimeDelta seek_time);
188
189  // Registers a new |id| to use for AppendData() calls. |type| indicates
190  // the MIME type for the data that we intend to append for this ID.
191  // |use_legacy_frame_processor| determines which of LegacyFrameProcessor or
192  // a (not yet implemented) more compliant frame processor to use to process
193  // parsed frames from AppendData() calls.
194  // TODO(wolenetz): Enable usage of new frame processor based on this flag.
195  // See http://crbug.com/249422.
196  // kOk is returned if the demuxer has enough resources to support another ID
197  //    and supports the format indicated by |type|.
198  // kNotSupported is returned if |type| is not a supported format.
199  // kReachedIdLimit is returned if the demuxer cannot handle another ID right
200  //    now.
201  Status AddId(const std::string& id, const std::string& type,
202               std::vector<std::string>& codecs,
203               const bool use_legacy_frame_processor);
204
205  // Removed an ID & associated resources that were previously added with
206  // AddId().
207  void RemoveId(const std::string& id);
208
209  // Gets the currently buffered ranges for the specified ID.
210  Ranges<base::TimeDelta> GetBufferedRanges(const std::string& id) const;
211
212  // Appends media data to the source buffer associated with |id|, applying
213  // and possibly updating |*timestamp_offset| during coded frame processing.
214  // |append_window_start| and |append_window_end| correspond to the MSE spec's
215  // similarly named source buffer attributes that are used in coded frame
216  // processing.
217  void AppendData(const std::string& id, const uint8* data, size_t length,
218                  base::TimeDelta append_window_start,
219                  base::TimeDelta append_window_end,
220                  base::TimeDelta* timestamp_offset);
221
222  // Aborts parsing the current segment and reset the parser to a state where
223  // it can accept a new segment.
224  void Abort(const std::string& id);
225
226  // Remove buffers between |start| and |end| for the source buffer
227  // associated with |id|.
228  void Remove(const std::string& id, base::TimeDelta start,
229              base::TimeDelta end);
230
231  // Returns the current presentation duration.
232  double GetDuration();
233  double GetDuration_Locked();
234
235  // Notifies the demuxer that the duration of the media has changed to
236  // |duration|.
237  void SetDuration(double duration);
238
239  // Returns true if the source buffer associated with |id| is currently parsing
240  // a media segment, or false otherwise.
241  bool IsParsingMediaSegment(const std::string& id);
242
243  // Set the append mode to be applied to subsequent buffers appended to the
244  // source buffer associated with |id|. If |sequence_mode| is true, caller
245  // is requesting "sequence" mode. Otherwise, caller is requesting "segments"
246  // mode.
247  void SetSequenceMode(const std::string& id, bool sequence_mode);
248
249  // Called to signal changes in the "end of stream"
250  // state. UnmarkEndOfStream() must not be called if a matching
251  // MarkEndOfStream() has not come before it.
252  void MarkEndOfStream(PipelineStatus status);
253  void UnmarkEndOfStream();
254
255  void Shutdown();
256
257  // Sets the memory limit on each stream. |memory_limit| is the
258  // maximum number of bytes each stream is allowed to hold in its buffer.
259  void SetMemoryLimitsForTesting(int memory_limit);
260
261  // Returns the ranges representing the buffered data in the demuxer.
262  // TODO(wolenetz): Remove this method once MediaSourceDelegate no longer
263  // requires it for doing hack browser seeks to I-frame on Android. See
264  // http://crbug.com/304234.
265  Ranges<base::TimeDelta> GetBufferedRanges() const;
266
267 private:
268  enum State {
269    WAITING_FOR_INIT,
270    INITIALIZING,
271    INITIALIZED,
272    ENDED,
273    PARSE_ERROR,
274    SHUTDOWN,
275  };
276
277  void ChangeState_Locked(State new_state);
278
279  // Reports an error and puts the demuxer in a state where it won't accept more
280  // data.
281  void ReportError_Locked(PipelineStatus error);
282
283  // Returns true if any stream has seeked to a time without buffered data.
284  bool IsSeekWaitingForData_Locked() const;
285
286  // Returns true if all streams can successfully call EndOfStream,
287  // false if any can not.
288  bool CanEndOfStream_Locked() const;
289
290  // SourceState callbacks.
291  void OnSourceInitDone(bool success,
292                        const StreamParser::InitParameters& params);
293
294  // Creates a DemuxerStream for the specified |type|.
295  // Returns a new ChunkDemuxerStream instance if a stream of this type
296  // has not been created before. Returns NULL otherwise.
297  ChunkDemuxerStream* CreateDemuxerStream(DemuxerStream::Type type);
298
299  void OnNewTextTrack(ChunkDemuxerStream* text_stream,
300                      const TextTrackConfig& config);
301
302  // Returns true if |source_id| is valid, false otherwise.
303  bool IsValidId(const std::string& source_id) const;
304
305  // Increases |duration_| to |new_duration|, if |new_duration| is higher.
306  void IncreaseDurationIfNecessary(base::TimeDelta new_duration);
307
308  // Decreases |duration_| if the buffered region is less than |duration_| when
309  // EndOfStream() is called.
310  void DecreaseDurationIfNecessary();
311
312  // Sets |duration_| to |new_duration|, sets |user_specified_duration_| to -1
313  // and notifies |host_|.
314  void UpdateDuration(base::TimeDelta new_duration);
315
316  // Returns the ranges representing the buffered data in the demuxer.
317  Ranges<base::TimeDelta> GetBufferedRanges_Locked() const;
318
319  // Start returning data on all DemuxerStreams.
320  void StartReturningData();
321
322  // Aborts pending reads on all DemuxerStreams.
323  void AbortPendingReads();
324
325  // Completes any pending reads if it is possible to do so.
326  void CompletePendingReadsIfPossible();
327
328  // Seeks all SourceBufferStreams to |seek_time|.
329  void SeekAllSources(base::TimeDelta seek_time);
330
331  // Shuts down all DemuxerStreams by calling Shutdown() on
332  // all objects in |source_state_map_|.
333  void ShutdownAllStreams();
334
335  mutable base::Lock lock_;
336  State state_;
337  bool cancel_next_seek_;
338
339  DemuxerHost* host_;
340  base::Closure open_cb_;
341  NeedKeyCB need_key_cb_;
342  bool enable_text_;
343  // Callback used to report error strings that can help the web developer
344  // figure out what is wrong with the content.
345  LogCB log_cb_;
346
347  PipelineStatusCB init_cb_;
348  // Callback to execute upon seek completion.
349  // TODO(wolenetz/acolwell): Protect against possible double-locking by first
350  // releasing |lock_| before executing this callback. See
351  // http://crbug.com/308226
352  PipelineStatusCB seek_cb_;
353
354  scoped_ptr<ChunkDemuxerStream> audio_;
355  scoped_ptr<ChunkDemuxerStream> video_;
356
357  // Keeps |audio_| alive when audio has been disabled.
358  scoped_ptr<ChunkDemuxerStream> disabled_audio_;
359
360  base::TimeDelta duration_;
361
362  // The duration passed to the last SetDuration(). If
363  // SetDuration() is never called or an AppendData() call or
364  // a EndOfStream() call changes |duration_|, then this
365  // variable is set to < 0 to indicate that the |duration_| represents
366  // the actual duration instead of a user specified value.
367  double user_specified_duration_;
368
369  base::Time timeline_offset_;
370  Liveness liveness_;
371
372  typedef std::map<std::string, SourceState*> SourceStateMap;
373  SourceStateMap source_state_map_;
374
375  // Used to ensure that (1) config data matches the type and codec provided in
376  // AddId(), (2) only 1 audio and 1 video sources are added, and (3) ids may be
377  // removed with RemoveID() but can not be re-added (yet).
378  std::string source_id_audio_;
379  std::string source_id_video_;
380
381  // Indicates that splice frame generation is enabled.
382  const bool splice_frames_enabled_;
383
384  DISALLOW_COPY_AND_ASSIGN(ChunkDemuxer);
385};
386
387}  // namespace media
388
389#endif  // MEDIA_FILTERS_CHUNK_DEMUXER_H_
390