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 // Implements the Demuxer interface using FFmpeg's libavformat. At this time
6 // will support demuxing any audio/video format thrown at it. The streams
7 // output mime types audio/x-ffmpeg and video/x-ffmpeg and include an integer
8 // key FFmpegCodecID which contains the CodecID enumeration value. The CodecIDs
9 // can be used to create and initialize the corresponding FFmpeg decoder.
11 // FFmpegDemuxer sets the duration of pipeline during initialization by using
12 // the duration of the longest audio/video stream.
14 // NOTE: since FFmpegDemuxer reads packets sequentially without seeking, media
15 // files with very large drift between audio/video streams may result in
16 // excessive memory consumption.
18 // When stopped, FFmpegDemuxer and FFmpegDemuxerStream release all callbacks
19 // and buffered packets. Reads from a stopped FFmpegDemuxerStream will not be
22 #ifndef MEDIA_FILTERS_FFMPEG_DEMUXER_H_
23 #define MEDIA_FILTERS_FFMPEG_DEMUXER_H_
29 #include "base/callback.h"
30 #include "base/gtest_prod_util.h"
31 #include "base/memory/scoped_vector.h"
32 #include "base/threading/thread.h"
33 #include "media/base/audio_decoder_config.h"
34 #include "media/base/decoder_buffer.h"
35 #include "media/base/decoder_buffer_queue.h"
36 #include "media/base/demuxer.h"
37 #include "media/base/pipeline.h"
38 #include "media/base/text_track_config.h"
39 #include "media/base/video_decoder_config.h"
40 #include "media/ffmpeg/ffmpeg_deleters.h"
41 #include "media/filters/blocking_url_protocol.h"
43 // FFmpeg forward declarations.
51 class FFmpegBitstreamConverter
;
55 typedef scoped_ptr
<AVPacket
, ScopedPtrAVFreePacket
> ScopedAVPacket
;
57 class FFmpegDemuxerStream
: public DemuxerStream
{
59 // Keeps a copy of |demuxer| and initializes itself using information inside
60 // |stream|. Both parameters must outlive |this|.
61 FFmpegDemuxerStream(FFmpegDemuxer
* demuxer
, AVStream
* stream
);
62 ~FFmpegDemuxerStream() override
;
64 // Enqueues the given AVPacket. It is invalid to queue a |packet| after
65 // SetEndOfStream() has been called.
66 void EnqueuePacket(ScopedAVPacket packet
);
68 // Enters the end of stream state. After delivering remaining queued buffers
69 // only end of stream buffers will be delivered.
70 void SetEndOfStream();
72 // Drops queued buffers and clears end of stream state.
75 // Empties the queues and ignores any additional calls to Read().
78 base::TimeDelta
duration() const { return duration_
; }
80 // Enables fixes for ogg files with negative timestamps. For AUDIO streams,
81 // all packets with negative timestamps will be marked for post-decode
82 // discard. For all other stream types, if FFmpegDemuxer::start_time() is
83 // negative, it will not be used to shift timestamps during EnqueuePacket().
84 void enable_negative_timestamp_fixups_for_ogg() {
85 fixup_negative_ogg_timestamps_
= true;
88 // DemuxerStream implementation.
89 Type
type() const override
;
90 Liveness
liveness() const override
;
91 void Read(const ReadCB
& read_cb
) override
;
92 void EnableBitstreamConverter() override
;
93 bool SupportsConfigChanges() override
;
94 AudioDecoderConfig
audio_decoder_config() override
;
95 VideoDecoderConfig
video_decoder_config() override
;
96 VideoRotation
video_rotation() override
;
98 void SetLiveness(Liveness liveness
);
100 // Returns the range of buffered data in this stream.
101 Ranges
<base::TimeDelta
> GetBufferedRanges() const;
103 // Returns elapsed time based on the already queued packets.
104 // Used to determine stream duration when it's not known ahead of time.
105 base::TimeDelta
GetElapsedTime() const;
107 // Returns true if this stream has capacity for additional data.
108 bool HasAvailableCapacity();
110 // Returns the total buffer size FFMpegDemuxerStream is holding onto.
111 size_t MemoryUsage() const;
113 TextKind
GetTextKind() const;
115 // Returns the value associated with |key| in the metadata for the avstream.
116 // Returns an empty string if the key is not present.
117 std::string
GetMetadata(const char* key
) const;
120 friend class FFmpegDemuxerTest
;
122 // Runs |read_cb_| if present with the front of |buffer_queue_|, calling
123 // NotifyCapacityAvailable() if capacity is still available.
124 void SatisfyPendingRead();
126 // Converts an FFmpeg stream timestamp into a base::TimeDelta.
127 static base::TimeDelta
ConvertStreamTimestamp(const AVRational
& time_base
,
130 // Resets any currently active bitstream converter.
131 void ResetBitstreamConverter();
133 // Create new bitstream converter, destroying active converter if present.
134 void InitBitstreamConverter();
136 FFmpegDemuxer
* demuxer_
;
137 scoped_refptr
<base::SingleThreadTaskRunner
> task_runner_
;
139 AudioDecoderConfig audio_config_
;
140 VideoDecoderConfig video_config_
;
143 base::TimeDelta duration_
;
145 base::TimeDelta last_packet_timestamp_
;
146 base::TimeDelta last_packet_duration_
;
147 Ranges
<base::TimeDelta
> buffered_ranges_
;
148 VideoRotation video_rotation_
;
150 DecoderBufferQueue buffer_queue_
;
153 #if defined(USE_PROPRIETARY_CODECS)
154 scoped_ptr
<FFmpegBitstreamConverter
> bitstream_converter_
;
157 std::string encryption_key_id_
;
158 bool fixup_negative_ogg_timestamps_
;
160 DISALLOW_COPY_AND_ASSIGN(FFmpegDemuxerStream
);
163 class MEDIA_EXPORT FFmpegDemuxer
: public Demuxer
{
165 FFmpegDemuxer(const scoped_refptr
<base::SingleThreadTaskRunner
>& task_runner
,
166 DataSource
* data_source
,
167 const EncryptedMediaInitDataCB
& encrypted_media_init_data_cb
,
168 const scoped_refptr
<MediaLog
>& media_log
);
169 ~FFmpegDemuxer() override
;
171 // Demuxer implementation.
172 std::string
GetDisplayName() const override
;
173 void Initialize(DemuxerHost
* host
,
174 const PipelineStatusCB
& status_cb
,
175 bool enable_text_tracks
) override
;
176 void Stop() override
;
177 void Seek(base::TimeDelta time
, const PipelineStatusCB
& cb
) override
;
178 base::Time
GetTimelineOffset() const override
;
179 DemuxerStream
* GetStream(DemuxerStream::Type type
) override
;
180 base::TimeDelta
GetStartTime() const override
;
182 // Calls |encrypted_media_init_data_cb_| with the initialization data
183 // encountered in the file.
184 void OnEncryptedMediaInitData(EmeInitDataType init_data_type
,
185 const std::string
& encryption_key_id
);
187 // Allow FFmpegDemuxerStream to notify us when there is updated information
188 // about capacity and what buffered data is available.
189 void NotifyCapacityAvailable();
190 void NotifyBufferingChanged();
192 // The lowest demuxed timestamp. If negative, DemuxerStreams must use this to
193 // adjust packet timestamps such that external clients see a zero-based
195 base::TimeDelta
start_time() const { return start_time_
; }
198 // To allow tests access to privates.
199 friend class FFmpegDemuxerTest
;
201 // FFmpeg callbacks during initialization.
202 void OnOpenContextDone(const PipelineStatusCB
& status_cb
, bool result
);
203 void OnFindStreamInfoDone(const PipelineStatusCB
& status_cb
, int result
);
205 // FFmpeg callbacks during seeking.
206 void OnSeekFrameDone(const PipelineStatusCB
& cb
, int result
);
208 // FFmpeg callbacks during reading + helper method to initiate reads.
209 void ReadFrameIfNeeded();
210 void OnReadFrameDone(ScopedAVPacket packet
, int result
);
212 // Returns true iff any stream has additional capacity. Note that streams can
213 // go over capacity depending on how the file is muxed.
214 bool StreamsHaveAvailableCapacity();
216 // Returns true if the maximum allowed memory usage has been reached.
217 bool IsMaxMemoryUsageReached() const;
219 // Signal all FFmpegDemuxerStreams that the stream has ended.
220 void StreamHasEnded();
222 // Called by |url_protocol_| whenever |data_source_| returns a read error.
223 void OnDataSourceError();
225 // Returns the stream from |streams_| that matches |type| as an
226 // FFmpegDemuxerStream.
227 FFmpegDemuxerStream
* GetFFmpegStream(DemuxerStream::Type type
) const;
229 // Called after the streams have been collected from the media, to allow
230 // the text renderer to bind each text stream to the cue rendering engine.
231 void AddTextStreams();
233 void SetLiveness(DemuxerStream::Liveness liveness
);
237 scoped_refptr
<base::SingleThreadTaskRunner
> task_runner_
;
239 // Thread on which all blocking FFmpeg operations are executed.
240 base::Thread blocking_thread_
;
242 // Tracks if there's an outstanding av_read_frame() operation.
244 // TODO(scherkus): Allow more than one read in flight for higher read
245 // throughput using demuxer_bench to verify improvements.
248 // Tracks if there's an outstanding av_seek_frame() operation. Used to discard
249 // results of pre-seek av_read_frame() operations.
252 // |streams_| mirrors the AVStream array in AVFormatContext. It contains
253 // FFmpegDemuxerStreams encapsluating AVStream objects at the same index.
255 // Since we only support a single audio and video stream, |streams_| will
256 // contain NULL entries for additional audio/video streams as well as for
257 // stream types that we do not currently support.
259 // Once initialized, operations on FFmpegDemuxerStreams should be carried out
260 // on the demuxer thread.
261 typedef ScopedVector
<FFmpegDemuxerStream
> StreamVector
;
262 StreamVector streams_
;
264 // Provides asynchronous IO to this demuxer. Consumed by |url_protocol_| to
265 // integrate with libavformat.
266 DataSource
* data_source_
;
268 scoped_refptr
<MediaLog
> media_log_
;
270 // Derived bitrate after initialization has completed.
273 // The first timestamp of the audio or video stream, whichever is lower. This
274 // is used to adjust timestamps so that external consumers always see a zero
276 base::TimeDelta start_time_
;
278 // The index and start time of the preferred streams for seeking. Filled upon
279 // completion of OnFindStreamInfoDone(). Each info entry represents an index
280 // into |streams_| and the start time of that stream.
282 // Seek() will attempt to use |preferred_stream_for_seeking_| if the seek
283 // point occurs after its associated start time. Otherwise it will use
284 // |fallback_stream_for_seeking_|.
285 typedef std::pair
<int, base::TimeDelta
> StreamSeekInfo
;
286 StreamSeekInfo preferred_stream_for_seeking_
;
287 StreamSeekInfo fallback_stream_for_seeking_
;
289 // The Time associated with timestamp 0. Set to a null
290 // time if the file doesn't have an association to Time.
291 base::Time timeline_offset_
;
293 // Whether text streams have been enabled for this demuxer.
296 // Set if we know duration of the audio stream. Used when processing end of
297 // stream -- at this moment we definitely know duration.
298 bool duration_known_
;
300 // FFmpegURLProtocol implementation and corresponding glue bits.
301 scoped_ptr
<BlockingUrlProtocol
> url_protocol_
;
302 scoped_ptr
<FFmpegGlue
> glue_
;
304 const EncryptedMediaInitDataCB encrypted_media_init_data_cb_
;
306 // NOTE: Weak pointers must be invalidated before all other member variables.
307 base::WeakPtrFactory
<FFmpegDemuxer
> weak_factory_
;
309 DISALLOW_COPY_AND_ASSIGN(FFmpegDemuxer
);
314 #endif // MEDIA_FILTERS_FFMPEG_DEMUXER_H_