OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:base_timestamp
(Results
1 - 12
of
12
) 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;
42
// 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_splicer.cc
51
if (output_timestamp_helper_.
base_timestamp
() == kNoTimestamp())
54
if (output_timestamp_helper_.
base_timestamp
() > input->timestamp()) {
audio_timestamp_helper_unittest.cc
62
EXPECT_TRUE(kNoTimestamp() == helper_.
base_timestamp
());
/external/chromium_org/media/mp2t/
es_parser_adts.cc
275
base::TimeDelta
base_timestamp
= audio_timestamp_helper_->GetTimestamp();
local
278
audio_timestamp_helper_->SetBaseTimestamp(
base_timestamp
);
/external/chromium_org/media/mp3/
mp3_stream_parser.cc
405
base::TimeDelta
base_timestamp
;
local
407
base_timestamp
= timestamp_helper_->GetTimestamp();
410
timestamp_helper_->SetBaseTimestamp(
base_timestamp
);
/external/chromium_org/media/filters/
ffmpeg_audio_decoder.cc
282
output_timestamp_helper_->
base_timestamp
() == kNoTimestamp()) {
451
if (output_timestamp_helper_->
base_timestamp
() == kNoTimestamp() &&
opus_audio_decoder.cc
381
output_timestamp_helper_->
base_timestamp
() == kNoTimestamp()) {
574
if (output_timestamp_helper_->
base_timestamp
() == kNoTimestamp() &&
decrypting_audio_decoder.cc
316
if (timestamp_helper_->
base_timestamp
() == kNoTimestamp() &&
/external/chromium_org/media/cdm/ppapi/
ffmpeg_cdm_audio_decoder.cc
300
if (output_timestamp_helper_->
base_timestamp
() == kNoTimestamp() &&
/hardware/qcom/media/mm-video-legacy/vidc/vdec/test/
omx_vdec_test.cpp
622
OMX_S64
base_timestamp
= 0, lastTimestamp = 0;
local
686
base_timestamp
= pBuffer->nTimeStamp;
687
DEBUG_PRINT("base_avsync Sec(%lu) uSec(%lu)
base_timestamp
(%lld)",
688
base_avsync.tv_sec, base_avsync.tv_usec,
base_timestamp
);
694
display_time = pBuffer->nTimeStamp -
base_timestamp
;
[
all
...]
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
omx_vdec_test.cpp
700
OMX_S64
base_timestamp
= 0, lastTimestamp = 0;
local
767
base_timestamp
= pBuffer->nTimeStamp;
768
DEBUG_PRINT("base_avsync Sec(%lu) uSec(%lu)
base_timestamp
(%lld)",
769
base_avsync.tv_sec, base_avsync.tv_usec,
base_timestamp
);
773
display_time = pBuffer->nTimeStamp -
base_timestamp
;
[
all
...]
Completed in 1538 milliseconds