2015-10-08 21:48:07 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
|
|
|
#ifndef MEDIA_FORMATS_WEBM_WEBM_CLUSTER_PARSER_H_
|
|
|
|
#define MEDIA_FORMATS_WEBM_WEBM_CLUSTER_PARSER_H_
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2015-10-14 22:46:23 +00:00
|
|
|
#include "packager/base/memory/scoped_ptr.h"
|
2015-10-14 23:10:12 +00:00
|
|
|
#include "packager/media/base/media_parser.h"
|
|
|
|
#include "packager/media/base/media_sample.h"
|
2015-10-14 22:46:23 +00:00
|
|
|
#include "packager/media/formats/webm/webm_parser.h"
|
|
|
|
#include "packager/media/formats/webm/webm_tracks_parser.h"
|
|
|
|
|
|
|
|
namespace edash_packager {
|
2015-10-08 21:48:07 +00:00
|
|
|
namespace media {
|
|
|
|
|
2015-10-14 22:46:23 +00:00
|
|
|
class WebMClusterParser : public WebMParserClient {
|
2015-10-08 21:48:07 +00:00
|
|
|
public:
|
2015-10-15 22:39:16 +00:00
|
|
|
/// Numbers chosen to estimate the duration of a buffer if none is set and
|
|
|
|
/// there is not enough information to get a better estimate.
|
2015-10-08 21:48:07 +00:00
|
|
|
enum {
|
2015-10-15 22:39:16 +00:00
|
|
|
/// Common 1k samples @44.1kHz
|
2015-10-08 21:48:07 +00:00
|
|
|
kDefaultAudioBufferDurationInMs = 23,
|
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
/// Chosen to represent 16fps duration, which will prevent MSE stalls in
|
|
|
|
/// videos with frame-rates as low as 8fps.
|
2015-10-08 21:48:07 +00:00
|
|
|
kDefaultVideoBufferDurationInMs = 63
|
|
|
|
};
|
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
/// Opus packets encode the duration and other parameters in the 5 most
|
|
|
|
/// significant bits of the first byte. The index in this array corresponds
|
|
|
|
/// to the duration of each frame of the packet in microseconds. See
|
|
|
|
/// https://tools.ietf.org/html/rfc6716#page-14
|
2015-10-08 21:48:07 +00:00
|
|
|
static const uint16_t kOpusFrameDurationsMu[];
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Helper class that manages per-track state.
|
|
|
|
class Track {
|
|
|
|
public:
|
|
|
|
Track(int track_num,
|
|
|
|
bool is_video,
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t default_duration,
|
|
|
|
const MediaParser::NewSampleCB& new_sample_cb);
|
2015-10-08 21:48:07 +00:00
|
|
|
~Track();
|
|
|
|
|
|
|
|
int track_num() const { return track_num_; }
|
|
|
|
|
|
|
|
// If |last_added_buffer_missing_duration_| is set, updates its duration
|
2015-10-15 22:39:16 +00:00
|
|
|
// relative to |buffer|'s timestamp, and emits it and unsets
|
|
|
|
// |last_added_buffer_missing_duration_|. Otherwise, if |buffer| is missing
|
|
|
|
// duration, saves |buffer| into |last_added_buffer_missing_duration_|.
|
|
|
|
bool EmitBuffer(const scoped_refptr<MediaSample>& buffer);
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
// If |last_added_buffer_missing_duration_| is set, updates its duration to
|
2015-10-15 22:39:16 +00:00
|
|
|
// be non-kNoTimestamp value of |estimated_next_frame_duration_| or a
|
|
|
|
// hard-coded default, then emits it and unsets
|
2015-10-08 21:48:07 +00:00
|
|
|
// |last_added_buffer_missing_duration_|. (This method helps stream parser
|
|
|
|
// emit all buffers in a media segment before signaling end of segment.)
|
|
|
|
void ApplyDurationEstimateIfNeeded();
|
|
|
|
|
|
|
|
// Clears all buffer state, including any possibly held-aside buffer that
|
2015-10-15 22:39:16 +00:00
|
|
|
// was missing duration.
|
2015-10-08 21:48:07 +00:00
|
|
|
void Reset();
|
|
|
|
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t default_duration() const { return default_duration_; }
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Helper that sanity-checks |buffer| duration, updates
|
2015-10-15 22:39:16 +00:00
|
|
|
// |estimated_next_frame_duration_|, and emits |buffer|.
|
|
|
|
// Returns false if |buffer| failed sanity check and therefore was not
|
|
|
|
// emitted. Returns true otherwise.
|
|
|
|
bool EmitBufferHelp(const scoped_refptr<MediaSample>& buffer);
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
// Helper that calculates the buffer duration to use in
|
|
|
|
// ApplyDurationEstimateIfNeeded().
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t GetDurationEstimate();
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
// Counts the number of estimated durations used in this track. Used to
|
2015-10-14 22:46:23 +00:00
|
|
|
// prevent log spam for LOG()s about estimated duration.
|
2015-10-08 21:48:07 +00:00
|
|
|
int num_duration_estimates_ = 0;
|
|
|
|
|
|
|
|
int track_num_;
|
|
|
|
bool is_video_;
|
|
|
|
|
|
|
|
// Parsed track buffers, each with duration and in (decode) timestamp order,
|
2015-10-15 22:39:16 +00:00
|
|
|
// that have not yet been emitted. Note that up to one additional buffer
|
|
|
|
// missing duration may be tracked by |last_added_buffer_missing_duration_|.
|
2015-10-14 23:10:12 +00:00
|
|
|
scoped_refptr<MediaSample> last_added_buffer_missing_duration_;
|
2015-10-08 21:48:07 +00:00
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
// If kNoTimestamp, then |estimated_next_frame_duration_| will be used.
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t default_duration_;
|
2015-10-08 21:48:07 +00:00
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
// If kNoTimestamp, then a default value will be used. This estimate is the
|
2015-12-14 20:33:18 +00:00
|
|
|
// maximum duration seen so far for this track, and is used only if
|
|
|
|
// |default_duration_| is kNoTimestamp.
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t estimated_next_frame_duration_;
|
|
|
|
|
|
|
|
MediaParser::NewSampleCB new_sample_cb_;
|
2015-10-08 21:48:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::map<int, Track> TextTrackMap;
|
|
|
|
|
|
|
|
public:
|
2015-10-14 22:46:23 +00:00
|
|
|
WebMClusterParser(int64_t timecode_scale,
|
2015-11-18 19:51:15 +00:00
|
|
|
scoped_refptr<AudioStreamInfo> audio_stream_info,
|
|
|
|
scoped_refptr<VideoStreamInfo> video_stream_info,
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t audio_default_duration,
|
|
|
|
int64_t video_default_duration,
|
2015-10-08 21:48:07 +00:00
|
|
|
const WebMTracksParser::TextTracks& text_tracks,
|
2015-10-14 22:46:23 +00:00
|
|
|
const std::set<int64_t>& ignored_tracks,
|
2015-10-08 21:48:07 +00:00
|
|
|
const std::string& audio_encryption_key_id,
|
|
|
|
const std::string& video_encryption_key_id,
|
2015-11-18 19:51:15 +00:00
|
|
|
const MediaParser::NewSampleCB& new_sample_cb,
|
|
|
|
const MediaParser::InitCB& init_cb);
|
2015-10-08 21:48:07 +00:00
|
|
|
~WebMClusterParser() override;
|
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
/// Resets the parser state so it can accept a new cluster.
|
2015-10-08 21:48:07 +00:00
|
|
|
void Reset();
|
|
|
|
|
2015-12-14 20:33:18 +00:00
|
|
|
/// Flush data currently in the parser and reset the parser so it can accept a
|
|
|
|
/// new cluster.
|
|
|
|
void Flush();
|
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
/// Parses a WebM cluster element in |buf|.
|
|
|
|
/// @return -1 if the parse fails.
|
|
|
|
/// @return 0 if more data is needed.
|
|
|
|
/// @return The number of bytes parsed on success.
|
2015-10-08 21:48:07 +00:00
|
|
|
int Parse(const uint8_t* buf, int size);
|
|
|
|
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t cluster_start_time() const { return cluster_start_time_; }
|
2015-10-08 21:48:07 +00:00
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
/// @return true if the last Parse() call stopped at the end of a cluster.
|
2015-10-08 21:48:07 +00:00
|
|
|
bool cluster_ended() const { return cluster_ended_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
// WebMParserClient methods.
|
|
|
|
WebMParserClient* OnListStart(int id) override;
|
|
|
|
bool OnListEnd(int id) override;
|
2015-10-14 22:46:23 +00:00
|
|
|
bool OnUInt(int id, int64_t val) override;
|
2015-10-08 21:48:07 +00:00
|
|
|
bool OnBinary(int id, const uint8_t* data, int size) override;
|
|
|
|
|
|
|
|
bool ParseBlock(bool is_simple_block,
|
|
|
|
const uint8_t* buf,
|
|
|
|
int size,
|
|
|
|
const uint8_t* additional,
|
|
|
|
int additional_size,
|
|
|
|
int duration,
|
2015-10-14 22:46:23 +00:00
|
|
|
int64_t discard_padding);
|
2015-10-08 21:48:07 +00:00
|
|
|
bool OnBlock(bool is_simple_block,
|
|
|
|
int track_num,
|
|
|
|
int timecode,
|
|
|
|
int duration,
|
|
|
|
int flags,
|
|
|
|
const uint8_t* data,
|
|
|
|
int size,
|
|
|
|
const uint8_t* additional,
|
|
|
|
int additional_size,
|
2015-10-14 22:46:23 +00:00
|
|
|
int64_t discard_padding);
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
// Resets the Track objects associated with each text track.
|
|
|
|
void ResetTextTracks();
|
|
|
|
|
|
|
|
// Search for the indicated track_num among the text tracks. Returns NULL
|
|
|
|
// if that track num is not a text track.
|
|
|
|
Track* FindTextTrack(int track_num);
|
|
|
|
|
|
|
|
// Attempts to read the duration from the encoded audio data, returning as
|
2015-10-15 22:39:16 +00:00
|
|
|
// kNoTimestamp if duration cannot be retrieved.
|
|
|
|
// Avoid calling if encrypted; may produce unexpected output. See
|
|
|
|
// implementation for supported codecs.
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t TryGetEncodedAudioDuration(const uint8_t* data, int size);
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
// Reads Opus packet header to determine packet duration. Duration returned
|
2015-10-15 22:39:16 +00:00
|
|
|
// as kNoTimestamp upon failure to read duration from packet.
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t ReadOpusDuration(const uint8_t* data, int size);
|
2015-10-08 21:48:07 +00:00
|
|
|
|
2015-10-15 22:39:16 +00:00
|
|
|
// Tracks the number of LOGs made in process of reading encoded duration.
|
|
|
|
// Useful to prevent log spam.
|
2015-10-08 21:48:07 +00:00
|
|
|
int num_duration_errors_ = 0;
|
|
|
|
|
|
|
|
double timecode_multiplier_; // Multiplier used to convert timecodes into
|
|
|
|
// microseconds.
|
2015-11-18 19:51:15 +00:00
|
|
|
scoped_refptr<AudioStreamInfo> audio_stream_info_;
|
|
|
|
scoped_refptr<VideoStreamInfo> video_stream_info_;
|
2015-10-14 22:46:23 +00:00
|
|
|
std::set<int64_t> ignored_tracks_;
|
2015-10-08 21:48:07 +00:00
|
|
|
std::string audio_encryption_key_id_;
|
|
|
|
std::string video_encryption_key_id_;
|
|
|
|
|
|
|
|
WebMListParser parser_;
|
|
|
|
|
2015-11-18 19:51:15 +00:00
|
|
|
// Indicates whether init_cb has been executed. |init_cb| is executed when we
|
|
|
|
// have codec configuration of video stream, which is extracted from the first
|
|
|
|
// video sample.
|
|
|
|
bool initialized_;
|
|
|
|
MediaParser::InitCB init_cb_;
|
|
|
|
|
2015-10-14 22:46:23 +00:00
|
|
|
int64_t last_block_timecode_ = -1;
|
2015-10-08 21:48:07 +00:00
|
|
|
scoped_ptr<uint8_t[]> block_data_;
|
|
|
|
int block_data_size_ = -1;
|
2015-10-14 22:46:23 +00:00
|
|
|
int64_t block_duration_ = -1;
|
|
|
|
int64_t block_add_id_ = -1;
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
scoped_ptr<uint8_t[]> block_additional_data_;
|
|
|
|
// Must be 0 if |block_additional_data_| is null. Must be > 0 if
|
|
|
|
// |block_additional_data_| is NOT null.
|
|
|
|
int block_additional_data_size_ = 0;
|
|
|
|
|
2015-10-14 22:46:23 +00:00
|
|
|
int64_t discard_padding_ = -1;
|
2015-10-08 21:48:07 +00:00
|
|
|
bool discard_padding_set_ = false;
|
|
|
|
|
2015-10-14 22:46:23 +00:00
|
|
|
int64_t cluster_timecode_ = -1;
|
2015-10-14 23:10:12 +00:00
|
|
|
int64_t cluster_start_time_;
|
2015-10-08 21:48:07 +00:00
|
|
|
bool cluster_ended_ = false;
|
|
|
|
|
|
|
|
Track audio_;
|
|
|
|
Track video_;
|
|
|
|
TextTrackMap text_track_map_;
|
|
|
|
|
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(WebMClusterParser);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace media
|
2015-10-14 22:46:23 +00:00
|
|
|
} // namespace edash_packager
|
2015-10-08 21:48:07 +00:00
|
|
|
|
|
|
|
#endif // MEDIA_FORMATS_WEBM_WEBM_CLUSTER_PARSER_H_
|