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-10-11 21:44:55 +00:00
|
|
|
|
2017-12-20 00:56:36 +00:00
|
|
|
#ifndef PACKAGER_MEDIA_BASE_DEMUXER_H_
|
|
|
|
#define PACKAGER_MEDIA_BASE_DEMUXER_H_
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2016-01-21 18:30:29 +00:00
|
|
|
#include <deque>
|
2016-08-17 17:41:40 +00:00
|
|
|
#include <memory>
|
2013-10-11 21:44:55 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2016-01-21 18:30:29 +00:00
|
|
|
#include "packager/base/compiler_specific.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/base/container_names.h"
|
2017-08-16 17:25:53 +00:00
|
|
|
#include "packager/media/origin/origin_handler.h"
|
2017-06-29 22:23:53 +00:00
|
|
|
#include "packager/status.h"
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2017-07-10 18:26:22 +00:00
|
|
|
|
|
|
|
class File;
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
namespace media {
|
|
|
|
|
|
|
|
class Decryptor;
|
2014-08-25 22:51:19 +00:00
|
|
|
class KeySource;
|
2013-10-11 21:44:55 +00:00
|
|
|
class MediaParser;
|
|
|
|
class MediaSample;
|
|
|
|
class StreamInfo;
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Demuxer is responsible for extracting elementary stream samples from a
|
|
|
|
/// media file, e.g. an ISO BMFF file.
|
2017-08-16 17:25:53 +00:00
|
|
|
class Demuxer : public OriginHandler {
|
2013-10-11 21:44:55 +00:00
|
|
|
public:
|
2014-01-24 18:46:46 +00:00
|
|
|
/// @param file_name specifies the input source. It uses prefix matching to
|
|
|
|
/// create a proper File object. The user can extend File to support
|
|
|
|
/// a custom File object with its own prefix.
|
2014-08-25 22:51:19 +00:00
|
|
|
explicit Demuxer(const std::string& file_name);
|
2013-10-11 21:44:55 +00:00
|
|
|
~Demuxer();
|
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
/// Set the KeySource for media decryption.
|
|
|
|
/// @param key_source points to the source of decryption keys. The key
|
|
|
|
/// source must support fetching of keys for the type of media being
|
|
|
|
/// demuxed.
|
2016-08-17 17:41:40 +00:00
|
|
|
void SetKeySource(std::unique_ptr<KeySource> key_source);
|
2014-08-25 22:51:19 +00:00
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Drive the remuxing from demuxer side (push). Read the file and push
|
|
|
|
/// the Data to Muxer until Eof.
|
2017-08-16 17:25:53 +00:00
|
|
|
Status Run() override;
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2015-02-09 18:22:28 +00:00
|
|
|
/// Cancel a demuxing job in progress. Will cause @a Run to exit with an error
|
|
|
|
/// status of type CANCELLED.
|
2017-08-16 17:25:53 +00:00
|
|
|
void Cancel() override;
|
2015-02-09 18:22:28 +00:00
|
|
|
|
2015-06-02 21:41:49 +00:00
|
|
|
/// @return Container name (type). Value is CONTAINER_UNKNOWN if the demuxer
|
|
|
|
/// is not initialized.
|
|
|
|
MediaContainerName container_name() { return container_name_; }
|
|
|
|
|
2017-02-21 18:36:50 +00:00
|
|
|
/// Set the handler for the specified stream.
|
|
|
|
/// @param stream_label can be 'audio', 'video', or stream number (zero
|
|
|
|
/// based).
|
|
|
|
/// @param handler is the handler for the specified stream.
|
|
|
|
Status SetHandler(const std::string& stream_label,
|
|
|
|
std::shared_ptr<MediaHandler> handler);
|
|
|
|
|
|
|
|
/// Override the language in the specified stream. If the specified stream is
|
|
|
|
/// a video stream or invalid, this function is a no-op.
|
|
|
|
/// @param stream_label can be 'audio', 'video', or stream number (zero
|
|
|
|
/// based).
|
|
|
|
/// @param language_override is the new language.
|
|
|
|
void SetLanguageOverride(const std::string& stream_label,
|
|
|
|
const std::string& language_override);
|
|
|
|
|
|
|
|
void set_dump_stream_info(bool dump_stream_info) {
|
|
|
|
dump_stream_info_ = dump_stream_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/// @name MediaHandler implementation overrides.
|
|
|
|
/// @{
|
|
|
|
Status InitializeInternal() override { return Status::OK; }
|
|
|
|
Status Process(std::unique_ptr<StreamData> stream_data) override {
|
|
|
|
return Status(error::INTERNAL_ERROR,
|
|
|
|
"Demuxer should not be the downstream handler.");
|
|
|
|
}
|
2017-03-03 00:10:30 +00:00
|
|
|
bool ValidateOutputStreamIndex(size_t stream_index) const override {
|
2017-02-21 18:36:50 +00:00
|
|
|
// We don't know if the stream is valid or not when setting up the graph.
|
|
|
|
// Will validate the stream index later when stream info is available.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
/// @}
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
private:
|
2017-01-24 00:55:02 +00:00
|
|
|
Demuxer(const Demuxer&) = delete;
|
|
|
|
Demuxer& operator=(const Demuxer&) = delete;
|
|
|
|
|
2016-01-21 18:30:29 +00:00
|
|
|
struct QueuedSample {
|
2017-01-24 00:55:02 +00:00
|
|
|
QueuedSample(uint32_t track_id, std::shared_ptr<MediaSample> sample);
|
2016-01-21 18:30:29 +00:00
|
|
|
~QueuedSample();
|
|
|
|
|
|
|
|
uint32_t track_id;
|
2017-01-24 00:55:02 +00:00
|
|
|
std::shared_ptr<MediaSample> sample;
|
2016-01-21 18:30:29 +00:00
|
|
|
};
|
|
|
|
|
2017-02-21 18:36:50 +00:00
|
|
|
// Initialize the parser. This method primes the demuxer by parsing portions
|
|
|
|
// of the media file to extract stream information.
|
|
|
|
// @return OK on success.
|
|
|
|
Status InitializeParser();
|
|
|
|
|
2016-01-21 18:30:29 +00:00
|
|
|
// Parser init event.
|
2017-01-24 00:55:02 +00:00
|
|
|
void ParserInitEvent(const std::vector<std::shared_ptr<StreamInfo>>& streams);
|
2016-01-21 18:30:29 +00:00
|
|
|
// Parser new sample event handler. Queues the samples if init event has not
|
|
|
|
// been received, otherwise calls PushSample() to push the sample to
|
|
|
|
// corresponding stream.
|
2014-09-30 21:52:21 +00:00
|
|
|
bool NewSampleEvent(uint32_t track_id,
|
2017-01-24 00:55:02 +00:00
|
|
|
const std::shared_ptr<MediaSample>& sample);
|
2016-01-21 18:30:29 +00:00
|
|
|
// Helper function to push the sample to corresponding stream.
|
2017-01-24 00:55:02 +00:00
|
|
|
bool PushSample(uint32_t track_id,
|
|
|
|
const std::shared_ptr<MediaSample>& sample);
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2017-02-21 18:36:50 +00:00
|
|
|
// Read from the source and send it to the parser.
|
|
|
|
Status Parse();
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
std::string file_name_;
|
2017-02-21 18:36:50 +00:00
|
|
|
File* media_file_ = nullptr;
|
|
|
|
// A stream is considered ready after receiving the stream info.
|
|
|
|
bool all_streams_ready_ = false;
|
2016-01-21 18:30:29 +00:00
|
|
|
// Queued samples received in NewSampleEvent() before ParserInitEvent().
|
|
|
|
std::deque<QueuedSample> queued_samples_;
|
2016-08-17 17:41:40 +00:00
|
|
|
std::unique_ptr<MediaParser> parser_;
|
2017-02-21 18:36:50 +00:00
|
|
|
// TrackId -> StreamIndex map.
|
2017-03-03 00:10:30 +00:00
|
|
|
std::map<uint32_t, size_t> track_id_to_stream_index_map_;
|
2017-02-21 18:36:50 +00:00
|
|
|
// The list of stream indexes in the above map (in the same order as the input
|
|
|
|
// stream info vector).
|
2017-03-03 00:10:30 +00:00
|
|
|
std::vector<size_t> stream_indexes_;
|
2017-02-21 18:36:50 +00:00
|
|
|
// StreamIndex -> language_override map.
|
2017-03-03 00:10:30 +00:00
|
|
|
std::map<size_t, std::string> language_overrides_;
|
2017-02-21 18:36:50 +00:00
|
|
|
MediaContainerName container_name_ = CONTAINER_UNKNOWN;
|
2016-08-17 17:41:40 +00:00
|
|
|
std::unique_ptr<uint8_t[]> buffer_;
|
|
|
|
std::unique_ptr<KeySource> key_source_;
|
2017-02-21 18:36:50 +00:00
|
|
|
bool cancelled_ = false;
|
|
|
|
// Whether to dump stream info when it is received.
|
|
|
|
bool dump_stream_info_ = false;
|
2017-05-31 18:14:11 +00:00
|
|
|
Status init_event_status_;
|
2013-10-11 21:44:55 +00:00
|
|
|
};
|
2013-11-21 22:33:07 +00:00
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2017-12-20 00:56:36 +00:00
|
|
|
#endif // PACKAGER_MEDIA_BASE_DEMUXER_H_
|