DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
demuxer.cc
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #include "packager/media/demuxer/demuxer.h"
8 
9 #include <algorithm>
10 
11 #include "packager/base/bind.h"
12 #include "packager/base/logging.h"
13 #include "packager/base/strings/string_number_conversions.h"
14 #include "packager/file/file.h"
15 #include "packager/media/base/decryptor_source.h"
16 #include "packager/media/base/key_source.h"
17 #include "packager/media/base/media_sample.h"
18 #include "packager/media/base/stream_info.h"
19 #include "packager/media/formats/mp2t/mp2t_media_parser.h"
20 #include "packager/media/formats/mp4/mp4_media_parser.h"
21 #include "packager/media/formats/webm/webm_media_parser.h"
22 #include "packager/media/formats/webvtt/webvtt_media_parser.h"
23 #include "packager/media/formats/wvm/wvm_media_parser.h"
24 
25 namespace {
26 // 65KB, sufficient to determine the container and likely all init data.
27 const size_t kInitBufSize = 0x10000;
28 const size_t kBufSize = 0x200000; // 2MB
29 // Maximum number of allowed queued samples. If we are receiving a lot of
30 // samples before seeing init_event, something is not right. The number
31 // set here is arbitrary though.
32 const size_t kQueuedSamplesLimit = 10000;
33 const size_t kInvalidStreamIndex = static_cast<size_t>(-1);
34 const size_t kBaseVideoOutputStreamIndex = 0x100;
35 const size_t kBaseAudioOutputStreamIndex = 0x200;
36 const size_t kBaseTextOutputStreamIndex = 0x300;
37 
38 std::string GetStreamLabel(size_t stream_index) {
39  switch (stream_index) {
40  case kBaseVideoOutputStreamIndex:
41  return "video";
42  case kBaseAudioOutputStreamIndex:
43  return "audio";
44  case kBaseTextOutputStreamIndex:
45  return "text";
46  default:
47  return base::SizeTToString(stream_index);
48  }
49 }
50 
51 bool GetStreamIndex(const std::string& stream_label, size_t* stream_index) {
52  DCHECK(stream_index);
53  if (stream_label == "video") {
54  *stream_index = kBaseVideoOutputStreamIndex;
55  } else if (stream_label == "audio") {
56  *stream_index = kBaseAudioOutputStreamIndex;
57  } else if (stream_label == "text") {
58  *stream_index = kBaseTextOutputStreamIndex;
59  } else {
60  // Expect stream_label to be a zero based stream id.
61  if (!base::StringToSizeT(stream_label, stream_index)) {
62  LOG(ERROR) << "Invalid argument --stream=" << stream_label << "; "
63  << "should be 'audio', 'video', 'text', or a number";
64  return false;
65  }
66  }
67  return true;
68 }
69 
70 }
71 
72 namespace shaka {
73 namespace media {
74 
75 Demuxer::Demuxer(const std::string& file_name)
76  : file_name_(file_name), buffer_(new uint8_t[kBufSize]) {}
77 
78 Demuxer::~Demuxer() {
79  if (media_file_)
80  media_file_->Close();
81 }
82 
83 void Demuxer::SetKeySource(std::unique_ptr<KeySource> key_source) {
84  key_source_ = std::move(key_source);
85 }
86 
87 Status Demuxer::Run() {
88  LOG(INFO) << "Demuxer::Run() on file '" << file_name_ << "'.";
89  Status status = InitializeParser();
90  // ParserInitEvent callback is called after a few calls to Parse(), which sets
91  // up the streams. Only after that, we can verify the outputs below.
92  while (!all_streams_ready_ && status.ok())
93  status.Update(Parse());
94  // If no output is defined, then return success after receiving all stream
95  // info.
96  if (all_streams_ready_ && output_handlers().empty())
97  return Status::OK;
98  if (!init_event_status_.ok())
99  return init_event_status_;
100  if (!status.ok())
101  return status;
102  // Check if all specified outputs exists.
103  for (const auto& pair : output_handlers()) {
104  if (std::find(stream_indexes_.begin(), stream_indexes_.end(), pair.first) ==
105  stream_indexes_.end()) {
106  LOG(ERROR) << "Invalid argument, stream=" << GetStreamLabel(pair.first)
107  << " not available.";
108  return Status(error::INVALID_ARGUMENT, "Stream not available");
109  }
110  }
111 
112  while (!cancelled_ && status.ok())
113  status.Update(Parse());
114  if (cancelled_ && status.ok())
115  return Status(error::CANCELLED, "Demuxer run cancelled");
116 
117  if (status.error_code() == error::END_OF_STREAM) {
118  for (size_t stream_index : stream_indexes_) {
119  status = FlushDownstream(stream_index);
120  if (!status.ok())
121  return status;
122  }
123  return Status::OK;
124  }
125  return status;
126 }
127 
129  cancelled_ = true;
130 }
131 
132 Status Demuxer::SetHandler(const std::string& stream_label,
133  std::shared_ptr<MediaHandler> handler) {
134  size_t stream_index = kInvalidStreamIndex;
135  if (!GetStreamIndex(stream_label, &stream_index)) {
136  return Status(error::INVALID_ARGUMENT,
137  "Invalid stream: " + stream_label);
138  }
139  return MediaHandler::SetHandler(stream_index, std::move(handler));
140 }
141 
142 void Demuxer::SetLanguageOverride(const std::string& stream_label,
143  const std::string& language_override) {
144  size_t stream_index = kInvalidStreamIndex;
145  if (!GetStreamIndex(stream_label, &stream_index))
146  LOG(WARNING) << "Invalid stream for language override " << stream_label;
147  language_overrides_[stream_index] = language_override;
148 }
149 
150 Demuxer::QueuedSample::QueuedSample(uint32_t local_track_id,
151  std::shared_ptr<MediaSample> local_sample)
152  : track_id(local_track_id), sample(local_sample) {}
153 
154 Demuxer::QueuedSample::~QueuedSample() {}
155 
156 Status Demuxer::InitializeParser() {
157  DCHECK(!media_file_);
158  DCHECK(!all_streams_ready_);
159 
160  LOG(INFO) << "Initialize Demuxer for file '" << file_name_ << "'.";
161 
162  media_file_ = File::Open(file_name_.c_str(), "r");
163  if (!media_file_) {
164  return Status(error::FILE_FAILURE,
165  "Cannot open file for reading " + file_name_);
166  }
167 
168  // Read enough bytes before detecting the container.
169  int64_t bytes_read = 0;
170  while (static_cast<size_t>(bytes_read) < kInitBufSize) {
171  int64_t read_result =
172  media_file_->Read(buffer_.get() + bytes_read, kInitBufSize);
173  if (read_result < 0)
174  return Status(error::FILE_FAILURE, "Cannot read file " + file_name_);
175  if (read_result == 0)
176  break;
177  bytes_read += read_result;
178  }
179  container_name_ = DetermineContainer(buffer_.get(), bytes_read);
180 
181  // Initialize media parser.
182  switch (container_name_) {
183  case CONTAINER_MOV:
184  parser_.reset(new mp4::MP4MediaParser());
185  break;
186  case CONTAINER_MPEG2TS:
187  parser_.reset(new mp2t::Mp2tMediaParser());
188  break;
189  case CONTAINER_MPEG2PS:
190  parser_.reset(new wvm::WvmMediaParser());
191  break;
192  case CONTAINER_WEBM:
193  parser_.reset(new WebMMediaParser());
194  break;
195  case CONTAINER_WEBVTT:
196  parser_.reset(new WebVttMediaParser());
197  break;
198  default:
199  NOTIMPLEMENTED();
200  return Status(error::UNIMPLEMENTED, "Container not supported.");
201  }
202 
203  parser_->Init(base::Bind(&Demuxer::ParserInitEvent, base::Unretained(this)),
204  base::Bind(&Demuxer::NewSampleEvent, base::Unretained(this)),
205  key_source_.get());
206 
207  // Handle trailing 'moov'.
208  if (container_name_ == CONTAINER_MOV)
209  static_cast<mp4::MP4MediaParser*>(parser_.get())->LoadMoov(file_name_);
210  if (!parser_->Parse(buffer_.get(), bytes_read)) {
211  return Status(error::PARSER_FAILURE,
212  "Cannot parse media file " + file_name_);
213  }
214  return Status::OK;
215 }
216 
217 void Demuxer::ParserInitEvent(
218  const std::vector<std::shared_ptr<StreamInfo>>& stream_infos) {
219  if (dump_stream_info_) {
220  printf("\nFile \"%s\":\n", file_name_.c_str());
221  printf("Found %zu stream(s).\n", stream_infos.size());
222  for (size_t i = 0; i < stream_infos.size(); ++i)
223  printf("Stream [%zu] %s\n", i, stream_infos[i]->ToString().c_str());
224  }
225 
226  int base_stream_index = 0;
227  bool video_handler_set =
228  output_handlers().find(kBaseVideoOutputStreamIndex) !=
229  output_handlers().end();
230  bool audio_handler_set =
231  output_handlers().find(kBaseAudioOutputStreamIndex) !=
232  output_handlers().end();
233  bool text_handler_set =
234  output_handlers().find(kBaseTextOutputStreamIndex) !=
235  output_handlers().end();
236  for (const std::shared_ptr<StreamInfo>& stream_info : stream_infos) {
237  size_t stream_index = base_stream_index;
238  if (video_handler_set && stream_info->stream_type() == kStreamVideo) {
239  stream_index = kBaseVideoOutputStreamIndex;
240  // Only for the first video stream.
241  video_handler_set = false;
242  }
243  if (audio_handler_set && stream_info->stream_type() == kStreamAudio) {
244  stream_index = kBaseAudioOutputStreamIndex;
245  // Only for the first audio stream.
246  audio_handler_set = false;
247  }
248  if (text_handler_set && stream_info->stream_type() == kStreamText) {
249  stream_index = kBaseTextOutputStreamIndex;
250  text_handler_set = false;
251  }
252 
253  const bool handler_set =
254  output_handlers().find(stream_index) != output_handlers().end();
255  if (handler_set) {
256  track_id_to_stream_index_map_[stream_info->track_id()] = stream_index;
257  stream_indexes_.push_back(stream_index);
258  auto iter = language_overrides_.find(stream_index);
259  if (iter != language_overrides_.end() &&
260  stream_info->stream_type() != kStreamVideo) {
261  stream_info->set_language(iter->second);
262  }
263  if (stream_info->is_encrypted()) {
264  init_event_status_.SetError(
265  error::INVALID_ARGUMENT,
266  "A decryption key source is not provided for an encrypted stream.");
267  } else {
268  init_event_status_.Update(
269  DispatchStreamInfo(stream_index, stream_info));
270  }
271  } else {
272  track_id_to_stream_index_map_[stream_info->track_id()] =
273  kInvalidStreamIndex;
274  }
275  ++base_stream_index;
276  }
277  all_streams_ready_ = true;
278 }
279 
280 bool Demuxer::NewSampleEvent(uint32_t track_id,
281  const std::shared_ptr<MediaSample>& sample) {
282  if (!all_streams_ready_) {
283  if (queued_samples_.size() >= kQueuedSamplesLimit) {
284  LOG(ERROR) << "Queued samples limit reached: " << kQueuedSamplesLimit;
285  return false;
286  }
287  queued_samples_.push_back(QueuedSample(track_id, sample));
288  return true;
289  }
290  if (!init_event_status_.ok()) {
291  return false;
292  }
293  while (!queued_samples_.empty()) {
294  if (!PushSample(queued_samples_.front().track_id,
295  queued_samples_.front().sample)) {
296  return false;
297  }
298  queued_samples_.pop_front();
299  }
300  return PushSample(track_id, sample);
301 }
302 
303 bool Demuxer::PushSample(uint32_t track_id,
304  const std::shared_ptr<MediaSample>& sample) {
305  auto stream_index_iter = track_id_to_stream_index_map_.find(track_id);
306  if (stream_index_iter == track_id_to_stream_index_map_.end()) {
307  LOG(ERROR) << "Track " << track_id << " not found.";
308  return false;
309  }
310  if (stream_index_iter->second == kInvalidStreamIndex)
311  return true;
312  Status status = DispatchMediaSample(stream_index_iter->second, sample);
313  if (!status.ok()) {
314  LOG(ERROR) << "Failed to process sample " << stream_index_iter->second
315  << " " << status;
316  }
317  return status.ok();
318 }
319 
320 Status Demuxer::Parse() {
321  DCHECK(media_file_);
322  DCHECK(parser_);
323  DCHECK(buffer_);
324 
325  int64_t bytes_read = media_file_->Read(buffer_.get(), kBufSize);
326  if (bytes_read == 0) {
327  if (!parser_->Flush())
328  return Status(error::PARSER_FAILURE, "Failed to flush.");
329  return Status(error::END_OF_STREAM, "");
330  } else if (bytes_read < 0) {
331  return Status(error::FILE_FAILURE, "Cannot read file " + file_name_);
332  }
333 
334  return parser_->Parse(buffer_.get(), bytes_read)
335  ? Status::OK
336  : Status(error::PARSER_FAILURE,
337  "Cannot parse media file " + file_name_);
338 }
339 
340 } // namespace media
341 } // namespace shaka
Status DispatchMediaSample(size_t stream_index, std::shared_ptr< MediaSample > media_sample)
Dispatch the media sample to downstream handlers.
Status SetHandler(const std::string &stream_label, std::shared_ptr< MediaHandler > handler)
Definition: demuxer.cc:132
Status Run() override
Definition: demuxer.cc:87
void SetLanguageOverride(const std::string &stream_label, const std::string &language_override)
Definition: demuxer.cc:142
Status DispatchStreamInfo(size_t stream_index, std::shared_ptr< StreamInfo > stream_info)
Dispatch the stream info to downstream handlers.
void SetKeySource(std::unique_ptr< KeySource > key_source)
Definition: demuxer.cc:83
Status FlushDownstream(size_t output_stream_index)
Flush the downstream connected at the specified output stream index.
Demuxer(const std::string &file_name)
Definition: demuxer.cc:75
void Cancel() override
Definition: demuxer.cc:128
Status SetHandler(size_t output_stream_index, std::shared_ptr< MediaHandler > handler)
Connect downstream handler at the specified output stream index.