2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
2013-09-24 04:17:12 +00:00
|
|
|
|
|
|
|
#ifndef MEDIA_BASE_MEDIA_PARSER_H_
|
|
|
|
#define MEDIA_BASE_MEDIA_PARSER_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/callback.h"
|
2016-01-21 18:30:29 +00:00
|
|
|
#include "packager/base/compiler_specific.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/memory/ref_counted.h"
|
|
|
|
#include "packager/base/memory/scoped_ptr.h"
|
|
|
|
#include "packager/media/base/container_names.h"
|
2013-09-24 04:17:12 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2013-09-24 04:17:12 +00:00
|
|
|
namespace media {
|
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
class KeySource;
|
2013-09-24 04:17:12 +00:00
|
|
|
class MediaSample;
|
|
|
|
class StreamInfo;
|
|
|
|
|
|
|
|
class MediaParser {
|
|
|
|
public:
|
|
|
|
MediaParser() {}
|
|
|
|
virtual ~MediaParser() {}
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Called upon completion of parser initialization.
|
|
|
|
/// @param stream_info contains the stream info of all the elementary streams
|
|
|
|
/// within this file.
|
|
|
|
typedef base::Callback<
|
|
|
|
void(const std::vector<scoped_refptr<StreamInfo> >& stream_info)> InitCB;
|
2013-09-24 04:17:12 +00:00
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Called when a new media sample has been parsed.
|
|
|
|
/// @param track_id is the track id of the new sample.
|
|
|
|
/// @param media_sample is the new media sample.
|
|
|
|
/// @return true if the sample is accepted, false if something was wrong
|
|
|
|
/// with the sample and a parsing error should be signaled.
|
2014-09-30 21:52:21 +00:00
|
|
|
typedef base::Callback<bool(uint32_t track_id,
|
|
|
|
const scoped_refptr<MediaSample>& media_sample)>
|
2013-09-24 04:17:12 +00:00
|
|
|
NewSampleCB;
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Initialize the parser with necessary callbacks. Must be called before any
|
|
|
|
/// data is passed to Parse().
|
|
|
|
/// @param init_cb will be called once enough data has been parsed to
|
|
|
|
/// determine the initial stream configurations.
|
2014-08-25 22:51:19 +00:00
|
|
|
/// @param new_sample_cb will be called each time a new media sample is
|
|
|
|
/// available from the parser. May be NULL, and caller retains
|
|
|
|
/// ownership.
|
2013-09-24 04:17:12 +00:00
|
|
|
virtual void Init(const InitCB& init_cb,
|
|
|
|
const NewSampleCB& new_sample_cb,
|
2014-08-25 22:51:19 +00:00
|
|
|
KeySource* decryption_key_source) = 0;
|
2013-09-24 04:17:12 +00:00
|
|
|
|
2014-04-24 18:37:33 +00:00
|
|
|
/// Flush data currently in the parser and put the parser in a state where it
|
|
|
|
/// can receive data for a new seek point.
|
2016-01-21 18:30:29 +00:00
|
|
|
/// @return true if successful, false otherwise.
|
|
|
|
virtual bool Flush() WARN_UNUSED_RESULT = 0;
|
2014-04-24 18:37:33 +00:00
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Should be called when there is new data to parse.
|
|
|
|
/// @return true if successful.
|
2016-01-21 18:30:29 +00:00
|
|
|
virtual bool Parse(const uint8_t* buf, int size) WARN_UNUSED_RESULT = 0;
|
2013-09-24 04:17:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(MediaParser);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2013-09-24 04:17:12 +00:00
|
|
|
|
|
|
|
#endif // MEDIA_BASE_MEDIA_PARSER_H_
|