/external/chromium_org/content/browser/speech/endpointer/ |
endpointer.h | 69 EpStatus Status(int64 *time_us); 81 void set_speech_input_complete_silence_length(int64 time_us) { 82 speech_input_complete_silence_length_us_ = time_us; 85 void set_long_speech_input_complete_silence_length(int64 time_us) { 86 long_speech_input_complete_silence_length_us_ = time_us; 89 void set_speech_input_possibly_complete_silence_length(int64 time_us) { 90 speech_input_possibly_complete_silence_length_us_ = time_us; 93 void set_long_speech_length(int64 time_us) { 94 long_speech_length_us_ = time_us;
|
energy_endpointer.cc | 56 void Insert(int64 time_us, bool decision); 68 int64 time_us; member in struct:content::EnergyEndpointer::HistoryRing::DecisionPoint 85 void EnergyEndpointer::HistoryRing::Insert(int64 time_us, bool decision) { 86 decision_points_[insertion_index_].time_us = time_us; 95 return decision_points_[ind].time_us; 106 int64 end_us = decision_points_[ind].time_us; 112 while ((decision_points_[ind].time_us > start_us) && 118 sum_us += end_us - decision_points_[ind].time_us; 120 end_us = decision_points_[ind].time_us; [all...] |
energy_endpointer.h | 83 void ProcessAudioFrame(int64 time_us,
|
/frameworks/av/media/libstagefright/ |
MediaSource.cpp | 37 void MediaSource::ReadOptions::setSeekTo(int64_t time_us, SeekMode mode) { 39 mSeekTimeUs = time_us; 50 int64_t *time_us, SeekMode *mode) const { 51 *time_us = mSeekTimeUs;
|
AudioPlayer.cpp | 795 status_t AudioPlayer::seekTo(int64_t time_us) { 798 ALOGV("seekTo( %lld )", time_us); 803 mSeekTimeUs = time_us; 804 mStartPosUs = time_us;
|
/frameworks/av/include/media/stagefright/ |
MediaSource.h | 78 void setSeekTo(int64_t time_us, SeekMode mode = SEEK_CLOSEST_SYNC); 80 bool getSeekTo(int64_t *time_us, SeekMode *mode) const;
|
AudioPlayer.h | 71 status_t seekTo(int64_t time_us);
|
/external/chromium_org/media/cast/ |
cast_defines.h | 110 inline void ConvertTimeToFractions(int64 time_us, 113 DCHECK_GE(time_us, 0) << "Time must NOT be negative"; 114 *seconds = static_cast<uint32>(time_us / base::Time::kMicrosecondsPerSecond); 116 (time_us % base::Time::kMicrosecondsPerSecond) * kMagicFractionalUnit);
|
/frameworks/av/libvideoeditor/lvpp/ |
VideoEditorAudioPlayer.h | 62 status_t seekTo(int64_t time_us);
|
VideoEditorAudioPlayer.cpp | 186 status_t VideoEditorAudioPlayer::seekTo(int64_t time_us) { 187 ALOGV("seekTo: %lld", time_us); 193 mSeekTimeUs = time_us;
|
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/ |
VideoEditorVideoDecoder.cpp | 152 int64_t time_us; local 154 options->getSeekTo(&time_us, &mode); 161 M4OSA_Int32 rapTime = time_us / 1000; 1380 int64_t time_us = *pTime * 1000; local [all...] |