HomeSort by relevance Sort by last modified time
    Searched refs:audio_timestamp_helper_ (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/media/base/android/
audio_decoder_job.cc 73 if (audio_timestamp_helper_)
74 audio_timestamp_helper_->SetBaseTimestamp(base_timestamp_);
88 audio_timestamp_helper_->AddFrames(size / bytes_per_frame_);
90 audio_timestamp_helper_->frame_count() - head_position;
93 audio_timestamp_helper_->GetTimestamp() -
94 audio_timestamp_helper_->GetFrameDuration(frames_to_play);
101 audio_timestamp_helper_->GetTimestamp());
135 if (audio_timestamp_helper_)
136 base_timestamp_ = audio_timestamp_helper_->GetTimestamp();
137 audio_timestamp_helper_.reset(new AudioTimestampHelper(sampling_rate_))
    [all...]
audio_decoder_job.h 37 // Sets the base timestamp for |audio_timestamp_helper_|.
64 // Base timestamp for the |audio_timestamp_helper_|.
68 scoped_ptr<AudioTimestampHelper> audio_timestamp_helper_; member in class:media::AudioDecoderJob
  /external/chromium_org/media/formats/mp2t/
es_parser_adts.cc 140 audio_timestamp_helper_->SetBaseTimestamp(current_timing_desc.pts);
142 if (audio_timestamp_helper_->base_timestamp() == kNoTimestamp()) {
146 base::TimeDelta current_pts = audio_timestamp_helper_->GetTimestamp();
148 audio_timestamp_helper_->GetFrameDuration(kSamplesPerAACFrame);
168 audio_timestamp_helper_->AddFrames(kSamplesPerAACFrame);
241 if (audio_timestamp_helper_ &&
242 audio_timestamp_helper_->base_timestamp() != kNoTimestamp()) {
243 base::TimeDelta base_timestamp = audio_timestamp_helper_->GetTimestamp();
244 audio_timestamp_helper_.reset(
246 audio_timestamp_helper_->SetBaseTimestamp(base_timestamp)
    [all...]
es_parser_mpeg1audio.cc 64 audio_timestamp_helper_->SetBaseTimestamp(current_timing_desc.pts);
66 if (audio_timestamp_helper_->base_timestamp() == kNoTimestamp()) {
70 base::TimeDelta current_pts = audio_timestamp_helper_->GetTimestamp();
72 audio_timestamp_helper_->GetFrameDuration(
91 audio_timestamp_helper_->AddFrames(mpeg1audio_frame.sample_count);
185 if (audio_timestamp_helper_ &&
186 audio_timestamp_helper_->base_timestamp() != kNoTimestamp()) {
187 base::TimeDelta base_timestamp = audio_timestamp_helper_->GetTimestamp();
188 audio_timestamp_helper_.reset(
190 audio_timestamp_helper_->SetBaseTimestamp(base_timestamp)
    [all...]
es_parser_adts.h 74 scoped_ptr<AudioTimestampHelper> audio_timestamp_helper_; member in class:media::mp2t::EsParserAdts
es_parser_mpeg1audio.h 77 scoped_ptr<AudioTimestampHelper> audio_timestamp_helper_; member in class:media::mp2t::EsParserMpeg1Audio

Completed in 289 milliseconds