DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
es_parser_h264.cc
1 // Copyright 2014 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.
4 
5 #include "packager/media/formats/mp2t/es_parser_h264.h"
6 
7 #include <stdint.h>
8 
9 #include "packager/base/logging.h"
10 #include "packager/base/numerics/safe_conversions.h"
11 #include "packager/media/base/media_sample.h"
12 #include "packager/media/base/offset_byte_queue.h"
13 #include "packager/media/base/timestamp.h"
14 #include "packager/media/base/video_stream_info.h"
15 #include "packager/media/filters/avc_decoder_configuration.h"
16 #include "packager/media/filters/h264_byte_to_unit_stream_converter.h"
17 #include "packager/media/filters/h264_parser.h"
18 #include "packager/media/formats/mp2t/mp2t_common.h"
19 
20 namespace edash_packager {
21 namespace media {
22 namespace mp2t {
23 
24 namespace {
25 
26 // An AUD NALU is at least 4 bytes:
27 // 3 bytes for the start code + 1 byte for the NALU type.
28 const int kMinAUDSize = 4;
29 
30 } // anonymous namespace
31 
32 EsParserH264::EsParserH264(uint32_t pid,
33  const NewStreamInfoCB& new_stream_info_cb,
34  const EmitSampleCB& emit_sample_cb)
35  : EsParser(pid),
36  new_stream_info_cb_(new_stream_info_cb),
37  emit_sample_cb_(emit_sample_cb),
38  es_queue_(new media::OffsetByteQueue()),
39  h264_parser_(new H264Parser()),
40  current_access_unit_pos_(0),
41  next_access_unit_pos_(0),
42  stream_converter_(new H264ByteToUnitStreamConverter),
43  decoder_config_check_pending_(false),
44  pending_sample_duration_(0),
45  waiting_for_key_frame_(true) {
46 }
47 
48 EsParserH264::~EsParserH264() {
49 }
50 
51 bool EsParserH264::Parse(const uint8_t* buf,
52  int size,
53  int64_t pts,
54  int64_t dts) {
55  // Note: Parse is invoked each time a PES packet has been reassembled.
56  // Unfortunately, a PES packet does not necessarily map
57  // to an h264 access unit, although the HLS recommendation is to use one PES
58  // for each access unit (but this is just a recommendation and some streams
59  // do not comply with this recommendation).
60 
61  // HLS recommendation: "In AVC video, you should have both a DTS and a
62  // PTS in each PES header".
63  // However, some streams do not comply with this recommendation.
64  DVLOG_IF(1, pts == kNoTimestamp) << "Each video PES should have a PTS";
65  if (pts != kNoTimestamp) {
66  TimingDesc timing_desc;
67  timing_desc.pts = pts;
68  timing_desc.dts = (dts != kNoTimestamp) ? dts : pts;
69 
70  // Link the end of the byte queue with the incoming timing descriptor.
71  timing_desc_list_.push_back(
72  std::pair<int64_t, TimingDesc>(es_queue_->tail(), timing_desc));
73  }
74 
75  // Add the incoming bytes to the ES queue.
76  es_queue_->Push(buf, size);
77  return ParseInternal();
78 }
79 
80 void EsParserH264::Flush() {
81  DVLOG(1) << "EsParserH264::Flush";
82 
83  if (FindAUD(&current_access_unit_pos_)) {
84  // Simulate an additional AUD to force emitting the last access unit
85  // which is assumed to be complete at this point.
86  uint8_t aud[] = {0x00, 0x00, 0x01, 0x09};
87  es_queue_->Push(aud, sizeof(aud));
88  ParseInternal();
89  }
90 
91  if (pending_sample_) {
92  // Flush pending sample.
93  DCHECK(pending_sample_duration_);
94  pending_sample_->set_duration(pending_sample_duration_);
95  emit_sample_cb_.Run(pid(), pending_sample_);
96  pending_sample_ = scoped_refptr<MediaSample>();
97  }
98 }
99 
100 void EsParserH264::Reset() {
101  DVLOG(1) << "EsParserH264::Reset";
102  es_queue_.reset(new media::OffsetByteQueue());
103  h264_parser_.reset(new H264Parser());
104  current_access_unit_pos_ = 0;
105  next_access_unit_pos_ = 0;
106  timing_desc_list_.clear();
107  last_video_decoder_config_ = scoped_refptr<StreamInfo>();
108  decoder_config_check_pending_ = false;
109  pending_sample_ = scoped_refptr<MediaSample>();
110  pending_sample_duration_ = 0;
111  waiting_for_key_frame_ = true;
112 }
113 
114 bool EsParserH264::FindAUD(int64_t* stream_pos) {
115  while (true) {
116  const uint8_t* es;
117  int size;
118  es_queue_->PeekAt(*stream_pos, &es, &size);
119 
120  // Find a start code and move the stream to the start code parser position.
121  uint64_t start_code_offset;
122  uint8_t start_code_size;
123  bool start_code_found = NaluReader::FindStartCode(
124  es, size, &start_code_offset, &start_code_size);
125  *stream_pos += start_code_offset;
126 
127  // No H264 start code found or NALU type not available yet.
128  if (!start_code_found ||
129  start_code_offset + start_code_size >= static_cast<uint64_t>(size)) {
130  return false;
131  }
132 
133  // Exit the parser loop when an AUD is found.
134  // Note: NALU header for an AUD:
135  // - ref_idc must be 0
136  // - type must be Nalu::H264_AUD
137  if (es[start_code_offset + start_code_size] == Nalu::H264_AUD)
138  break;
139 
140  // The current NALU is not an AUD, skip the start code
141  // and continue parsing the stream.
142  *stream_pos += start_code_size;
143  }
144 
145  return true;
146 }
147 
148 bool EsParserH264::ParseInternal() {
149  DCHECK_LE(es_queue_->head(), current_access_unit_pos_);
150  DCHECK_LE(current_access_unit_pos_, next_access_unit_pos_);
151  DCHECK_LE(next_access_unit_pos_, es_queue_->tail());
152 
153  // Find the next AUD located at or after |current_access_unit_pos_|. This is
154  // needed since initially |current_access_unit_pos_| might not point to
155  // an AUD.
156  // Discard all the data before the updated |current_access_unit_pos_|
157  // since it won't be used again.
158  bool aud_found = FindAUD(&current_access_unit_pos_);
159  es_queue_->Trim(current_access_unit_pos_);
160  if (next_access_unit_pos_ < current_access_unit_pos_)
161  next_access_unit_pos_ = current_access_unit_pos_;
162 
163  // Resume parsing later if no AUD was found.
164  if (!aud_found)
165  return true;
166 
167  // Find the next AUD to make sure we have a complete access unit.
168  if (next_access_unit_pos_ < current_access_unit_pos_ + kMinAUDSize) {
169  next_access_unit_pos_ = current_access_unit_pos_ + kMinAUDSize;
170  DCHECK_LE(next_access_unit_pos_, es_queue_->tail());
171  }
172  if (!FindAUD(&next_access_unit_pos_))
173  return true;
174 
175  // At this point, we know we have a full access unit.
176  bool is_key_frame = false;
177  int pps_id_for_access_unit = -1;
178 
179  const uint8_t* es;
180  int size;
181  es_queue_->PeekAt(current_access_unit_pos_, &es, &size);
182  int access_unit_size = base::checked_cast<int, int64_t>(
183  next_access_unit_pos_ - current_access_unit_pos_);
184  DCHECK_LE(access_unit_size, size);
185  NaluReader reader(kIsAnnexbByteStream, es, access_unit_size);
186 
187  while (true) {
188  Nalu nalu;
189  bool is_eos = false;
190  switch (reader.Advance(&nalu)) {
191  case NaluReader::kOk:
192  break;
193  case NaluReader::kEOStream:
194  is_eos = true;
195  break;
196  default:
197  return false;
198  }
199  if (is_eos)
200  break;
201 
202  switch (nalu.type()) {
203  case Nalu::H264_AUD: {
204  DVLOG(LOG_LEVEL_ES) << "Nalu: AUD";
205  break;
206  }
207  case Nalu::H264_SPS: {
208  DVLOG(LOG_LEVEL_ES) << "Nalu: SPS";
209  int sps_id;
210  if (h264_parser_->ParseSPS(nalu, &sps_id) != H264Parser::kOk)
211  return false;
212  decoder_config_check_pending_ = true;
213  break;
214  }
215  case Nalu::H264_PPS: {
216  DVLOG(LOG_LEVEL_ES) << "Nalu: PPS";
217  int pps_id;
218  if (h264_parser_->ParsePPS(nalu, &pps_id) != H264Parser::kOk) {
219  // Allow PPS parsing to fail if waiting for SPS.
220  if (last_video_decoder_config_)
221  return false;
222  } else {
223  decoder_config_check_pending_ = true;
224  }
225  break;
226  }
227  case Nalu::H264_IDRSlice:
228  case Nalu::H264_NonIDRSlice: {
229  is_key_frame = (nalu.type() == Nalu::H264_IDRSlice);
230  DVLOG(LOG_LEVEL_ES) << "Nalu: slice IDR=" << is_key_frame;
231  H264SliceHeader shdr;
232  if (h264_parser_->ParseSliceHeader(nalu, &shdr) != H264Parser::kOk) {
233  // Only accept an invalid SPS/PPS at the beginning when the stream
234  // does not necessarily start with an SPS/PPS/IDR.
235  if (last_video_decoder_config_)
236  return false;
237  } else {
238  pps_id_for_access_unit = shdr.pic_parameter_set_id;
239  }
240  break;
241  }
242  default: {
243  DVLOG(LOG_LEVEL_ES) << "Nalu: " << nalu.type();
244  }
245  }
246  }
247 
248  if (waiting_for_key_frame_) {
249  waiting_for_key_frame_ = !is_key_frame;
250  }
251  if (!waiting_for_key_frame_) {
252  // Emit a frame and move the stream to the next AUD position.
253  RCHECK(EmitFrame(current_access_unit_pos_, access_unit_size,
254  is_key_frame, pps_id_for_access_unit));
255  }
256  current_access_unit_pos_ = next_access_unit_pos_;
257  es_queue_->Trim(current_access_unit_pos_);
258 
259  return true;
260 }
261 
262 bool EsParserH264::EmitFrame(int64_t access_unit_pos,
263  int access_unit_size,
264  bool is_key_frame,
265  int pps_id) {
266  // Get the access unit timing info.
267  TimingDesc current_timing_desc = {kNoTimestamp, kNoTimestamp};
268  while (!timing_desc_list_.empty() &&
269  timing_desc_list_.front().first <= access_unit_pos) {
270  current_timing_desc = timing_desc_list_.front().second;
271  timing_desc_list_.pop_front();
272  }
273  if (current_timing_desc.pts == kNoTimestamp)
274  return false;
275 
276  // Emit a frame.
277  DVLOG(LOG_LEVEL_ES) << "Emit frame: stream_pos=" << current_access_unit_pos_
278  << " size=" << access_unit_size;
279  int es_size;
280  const uint8_t* es;
281  es_queue_->PeekAt(current_access_unit_pos_, &es, &es_size);
282  CHECK_GE(es_size, access_unit_size);
283 
284  // Convert frame to unit stream format.
285  std::vector<uint8_t> converted_frame;
286  if (!stream_converter_->ConvertByteStreamToNalUnitStream(
287  es, access_unit_size, &converted_frame)) {
288  DLOG(ERROR) << "Failure to convert video frame to unit stream format.";
289  return false;
290  }
291 
292  if (decoder_config_check_pending_) {
293  // Update the video decoder configuration if needed.
294  const H264PPS* pps = h264_parser_->GetPPS(pps_id);
295  if (!pps) {
296  // Only accept an invalid PPS at the beginning when the stream
297  // does not necessarily start with an SPS/PPS/IDR.
298  // In this case, the initial frames are conveyed to the upper layer with
299  // an invalid VideoDecoderConfig and it's up to the upper layer
300  // to process this kind of frame accordingly.
301  if (last_video_decoder_config_)
302  return false;
303  } else {
304  const H264SPS* sps = h264_parser_->GetSPS(pps->seq_parameter_set_id);
305  if (!sps)
306  return false;
307  RCHECK(UpdateVideoDecoderConfig(sps));
308  decoder_config_check_pending_ = false;
309  }
310  }
311 
312  // Create the media sample, emitting always the previous sample after
313  // calculating its duration.
314  scoped_refptr<MediaSample> media_sample = MediaSample::CopyFrom(
315  converted_frame.data(), converted_frame.size(), is_key_frame);
316  media_sample->set_dts(current_timing_desc.dts);
317  media_sample->set_pts(current_timing_desc.pts);
318  if (pending_sample_) {
319  DCHECK_GT(media_sample->dts(), pending_sample_->dts());
320  pending_sample_duration_ = media_sample->dts() - pending_sample_->dts();
321  pending_sample_->set_duration(pending_sample_duration_);
322  emit_sample_cb_.Run(pid(), pending_sample_);
323  }
324  pending_sample_ = media_sample;
325 
326  return true;
327 }
328 
329 bool EsParserH264::UpdateVideoDecoderConfig(const H264SPS* sps) {
330  std::vector<uint8_t> decoder_config_record;
331  if (!stream_converter_->GetAVCDecoderConfigurationRecord(
332  &decoder_config_record)) {
333  DLOG(ERROR) << "Failure to construct an AVCDecoderConfigurationRecord";
334  return false;
335  }
336 
337  if (last_video_decoder_config_) {
338  if (last_video_decoder_config_->extra_data() != decoder_config_record) {
339  // Video configuration has changed. Issue warning.
340  // TODO(tinskip): Check the nature of the configuration change. Only
341  // minor configuration changes (such as frame ordering) can be handled
342  // gracefully by decoders without notification. Major changes (such as
343  // video resolution changes) should be treated as errors.
344  LOG(WARNING) << "H.264 decoder configuration has changed.";
345  last_video_decoder_config_->set_extra_data(decoder_config_record);
346  }
347  return true;
348  }
349 
350  uint32_t coded_width = 0;
351  uint32_t coded_height = 0;
352  uint32_t pixel_width = 0;
353  uint32_t pixel_height = 0;
354  if (!ExtractResolutionFromSps(*sps, &coded_width, &coded_height, &pixel_width,
355  &pixel_height)) {
356  LOG(ERROR) << "Failed to parse SPS.";
357  return false;
358  }
359 
360  last_video_decoder_config_ = scoped_refptr<StreamInfo>(
361  new VideoStreamInfo(
362  pid(),
363  kMpeg2Timescale,
364  kInfiniteDuration,
365  kCodecH264,
366  AVCDecoderConfiguration::GetCodecString(decoder_config_record[1],
367  decoder_config_record[2],
368  decoder_config_record[3]),
369  std::string(),
370  coded_width,
371  coded_height,
372  pixel_width,
373  pixel_height,
374  0,
375  H264ByteToUnitStreamConverter::kUnitStreamNaluLengthSize,
376  decoder_config_record.data(),
377  decoder_config_record.size(),
378  false));
379  DVLOG(1) << "Profile IDC: " << sps->profile_idc;
380  DVLOG(1) << "Level IDC: " << sps->level_idc;
381  DVLOG(1) << "log2_max_frame_num_minus4: " << sps->log2_max_frame_num_minus4;
382 
383  // Video config notification.
384  new_stream_info_cb_.Run(last_video_decoder_config_);
385 
386  return true;
387 }
388 
389 } // namespace mp2t
390 } // namespace media
391 } // namespace edash_packager
static scoped_refptr< MediaSample > CopyFrom(const uint8_t *data, size_t size, bool is_key_frame)
Definition: media_sample.cc:45