| 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/mpeg/mpeg_audio_stream_parser_base.h" | 5 #include "media/formats/mpeg/mpeg_audio_stream_parser_base.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback_helpers.h" | 8 #include "base/callback_helpers.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "media/base/stream_parser_buffer.h" | 10 #include "media/base/stream_parser_buffer.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 MPEGAudioStreamParserBase::~MPEGAudioStreamParserBase() {} | 55 MPEGAudioStreamParserBase::~MPEGAudioStreamParserBase() {} |
| 56 | 56 |
| 57 void MPEGAudioStreamParserBase::Init( | 57 void MPEGAudioStreamParserBase::Init( |
| 58 const InitCB& init_cb, | 58 const InitCB& init_cb, |
| 59 const NewConfigCB& config_cb, | 59 const NewConfigCB& config_cb, |
| 60 const NewBuffersCB& new_buffers_cb, | 60 const NewBuffersCB& new_buffers_cb, |
| 61 bool ignore_text_tracks, | 61 bool ignore_text_tracks, |
| 62 const EncryptedMediaInitDataCB& encrypted_media_init_data_cb, | 62 const EncryptedMediaInitDataCB& encrypted_media_init_data_cb, |
| 63 const NewMediaSegmentCB& new_segment_cb, | 63 const NewMediaSegmentCB& new_segment_cb, |
| 64 const base::Closure& end_of_segment_cb, | 64 const EndMediaSegmentCB& end_of_segment_cb, |
| 65 const scoped_refptr<MediaLog>& media_log) { | 65 const scoped_refptr<MediaLog>& media_log) { |
| 66 DVLOG(1) << __FUNCTION__; | 66 DVLOG(1) << __FUNCTION__; |
| 67 DCHECK_EQ(state_, UNINITIALIZED); | 67 DCHECK_EQ(state_, UNINITIALIZED); |
| 68 init_cb_ = init_cb; | 68 init_cb_ = init_cb; |
| 69 config_cb_ = config_cb; | 69 config_cb_ = config_cb; |
| 70 new_buffers_cb_ = new_buffers_cb; | 70 new_buffers_cb_ = new_buffers_cb; |
| 71 new_segment_cb_ = new_segment_cb; | 71 new_segment_cb_ = new_segment_cb; |
| 72 end_of_segment_cb_ = end_of_segment_cb; | 72 end_of_segment_cb_ = end_of_segment_cb; |
| 73 media_log_ = media_log; | 73 media_log_ = media_log; |
| 74 | 74 |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 if (end_of_segment) { | 412 if (end_of_segment) { |
| 413 in_media_segment_ = false; | 413 in_media_segment_ = false; |
| 414 end_of_segment_cb_.Run(); | 414 end_of_segment_cb_.Run(); |
| 415 } | 415 } |
| 416 | 416 |
| 417 timestamp_helper_->SetBaseTimestamp(base::TimeDelta()); | 417 timestamp_helper_->SetBaseTimestamp(base::TimeDelta()); |
| 418 return true; | 418 return true; |
| 419 } | 419 } |
| 420 | 420 |
| 421 } // namespace media | 421 } // namespace media |
| OLD | NEW |