| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/formats/mp4/mp4_stream_parser.h" | 5 #include "media/formats/mp4/mp4_stream_parser.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 MP4StreamParser::~MP4StreamParser() {} | 48 MP4StreamParser::~MP4StreamParser() {} |
| 49 | 49 |
| 50 void MP4StreamParser::Init( | 50 void MP4StreamParser::Init( |
| 51 const InitCB& init_cb, | 51 const InitCB& init_cb, |
| 52 const NewConfigCB& config_cb, | 52 const NewConfigCB& config_cb, |
| 53 const NewBuffersCB& new_buffers_cb, | 53 const NewBuffersCB& new_buffers_cb, |
| 54 bool /* ignore_text_tracks */, | 54 bool /* ignore_text_tracks */, |
| 55 const EncryptedMediaInitDataCB& encrypted_media_init_data_cb, | 55 const EncryptedMediaInitDataCB& encrypted_media_init_data_cb, |
| 56 const NewMediaSegmentCB& new_segment_cb, | 56 const NewMediaSegmentCB& new_segment_cb, |
| 57 const base::Closure& end_of_segment_cb, | 57 const EndMediaSegmentCB& end_of_segment_cb, |
| 58 const scoped_refptr<MediaLog>& media_log) { | 58 const scoped_refptr<MediaLog>& media_log) { |
| 59 DCHECK_EQ(state_, kWaitingForInit); | 59 DCHECK_EQ(state_, kWaitingForInit); |
| 60 DCHECK(init_cb_.is_null()); | 60 DCHECK(init_cb_.is_null()); |
| 61 DCHECK(!init_cb.is_null()); | 61 DCHECK(!init_cb.is_null()); |
| 62 DCHECK(!config_cb.is_null()); | 62 DCHECK(!config_cb.is_null()); |
| 63 DCHECK(!new_buffers_cb.is_null()); | 63 DCHECK(!new_buffers_cb.is_null()); |
| 64 DCHECK(!encrypted_media_init_data_cb.is_null()); | 64 DCHECK(!encrypted_media_init_data_cb.is_null()); |
| 65 DCHECK(!end_of_segment_cb.is_null()); | 65 DCHECK(!end_of_segment_cb.is_null()); |
| 66 | 66 |
| 67 ChangeState(kParsingBoxes); | 67 ChangeState(kParsingBoxes); |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 runs.AdvanceSample(); | 655 runs.AdvanceSample(); |
| 656 } | 656 } |
| 657 runs.AdvanceRun(); | 657 runs.AdvanceRun(); |
| 658 } | 658 } |
| 659 | 659 |
| 660 return true; | 660 return true; |
| 661 } | 661 } |
| 662 | 662 |
| 663 } // namespace mp4 | 663 } // namespace mp4 |
| 664 } // namespace media | 664 } // namespace media |
| OLD | NEW |