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

  /external/chromium_org/media/base/
audio_timestamp_helper.h 32 // Sets the base timestamp to |base_timestamp| and the sets count to 0.
33 void SetBaseTimestamp(base::TimeDelta base_timestamp);
35 base::TimeDelta base_timestamp() const;
43 // Get the current timestamp. This value is computed from the base_timestamp()
audio_timestamp_helper.cc 20 void AudioTimestampHelper::SetBaseTimestamp(base::TimeDelta base_timestamp) {
21 base_timestamp_ = base_timestamp;
25 base::TimeDelta AudioTimestampHelper::base_timestamp() const { function in class:media::AudioTimestampHelper
audio_discard_helper.h 62 return timestamp_helper_.base_timestamp() != kNoTimestamp();
audio_splicer.cc 58 void ResetTimestampState(int64 frame_count, base::TimeDelta base_timestamp);
106 base::TimeDelta base_timestamp) {
109 output_timestamp_helper_.SetBaseTimestamp(base_timestamp);
127 if (output_timestamp_helper_.base_timestamp() == kNoTimestamp())
130 if (output_timestamp_helper_.base_timestamp() > input->timestamp()) {
279 output_ts_helper.frame_count(), output_ts_helper.base_timestamp());
297 if (output_ts_helper.base_timestamp() == kNoTimestamp()) {
299 0, pre_splice_sanitizer_->timestamp_helper().base_timestamp());
audio_timestamp_helper_unittest.cc 62 EXPECT_TRUE(kNoTimestamp() == helper_.base_timestamp());
audio_buffer_converter.cc 58 if (timestamp_helper_.base_timestamp() == kNoTimestamp())
  /external/chromium_org/media/base/android/
audio_decoder_job.h 37 void SetBaseTimestamp(base::TimeDelta base_timestamp);
audio_decoder_job.cc 59 void AudioDecoderJob::SetBaseTimestamp(base::TimeDelta base_timestamp) {
61 base_timestamp_ = base_timestamp;
  /external/chromium_org/media/formats/mpeg/
mpeg_audio_stream_parser_base.cc 215 base::TimeDelta base_timestamp; local
217 base_timestamp = timestamp_helper_->GetTimestamp();
220 timestamp_helper_->SetBaseTimestamp(base_timestamp);
  /external/chromium_org/media/formats/mp2t/
es_parser_adts.cc 259 base::TimeDelta base_timestamp = audio_timestamp_helper_->GetTimestamp(); local
262 audio_timestamp_helper_->SetBaseTimestamp(base_timestamp);
  /external/chromium_org/media/cdm/ppapi/external_clear_key/
ffmpeg_cdm_audio_decoder.cc 300 if (output_timestamp_helper_->base_timestamp() == kNoTimestamp() &&
  /external/chromium_org/media/filters/
decrypting_audio_decoder.cc 104 if (timestamp_helper_->base_timestamp() == kNoTimestamp() &&
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/test/
omx_vdec_test.cpp 618 OMX_S64 base_timestamp = 0, lastTimestamp = 0; local
682 base_timestamp = pBuffer->nTimeStamp;
683 DEBUG_PRINT("base_avsync Sec(%lu) uSec(%lu) base_timestamp(%lld)",
684 base_avsync.tv_sec, base_avsync.tv_usec, base_timestamp);
690 display_time = pBuffer->nTimeStamp - base_timestamp;
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
omx_vdec_test.cpp 740 OMX_S64 base_timestamp = 0, lastTimestamp = 0; local
808 base_timestamp = pBuffer->nTimeStamp;
809 DEBUG_PRINT("base_avsync Sec(%lu) uSec(%lu) base_timestamp(%lld)",
810 base_avsync.tv_sec, base_avsync.tv_usec, base_timestamp);
814 display_time = pBuffer->nTimeStamp - base_timestamp;
    [all...]

Completed in 621 milliseconds