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

  /frameworks/av/include/media/stagefright/
VideoFrameScheduler.h 47 static const size_t kHistorySize = 8;
74 size_t mNumSamples; // can go past kHistorySize
75 nsecs_t mTimes[kHistorySize];
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_unittest.cc 26 enum { kHistorySize = kMaxDelay + kLookahead };
63 uint32_t binary_spectrum_[kSequenceLength + kHistorySize];
83 for (int i = 1; i < (kSequenceLength + kHistorySize); i++) {
90 kHistorySize);
96 binary_farend_ = WebRtc_CreateBinaryDelayEstimatorFarend(kHistorySize);
232 handle = WebRtc_CreateDelayEstimatorFarend(33, kHistorySize);
281 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize);
286 EXPECT_EQ(kHistorySize, WebRtc_set_history_size(handle_, kHistorySize));
605 EXPECT_EQ(kHistorySize, WebRtc_history_size(handle_))
    [all...]
  /frameworks/av/media/libstagefright/
VideoFrameScheduler.cpp 53 static const size_t kMinSamplesToStopPrime = VideoFrameScheduler::kHistorySize;
55 static const size_t kMaxSamplesToEstimatePeriod = VideoFrameScheduler::kHistorySize;
141 size_t ix = (mNumSamples - numSamplesToUse + i) % kHistorySize;
189 size_t index = (mNumSamples - numSamplesToUse + i) % kHistorySize;
272 mTimes[mNumSamples % kHistorySize] = time;
  /external/lzma/CPP/7zip/UI/GUI/
ExtractDialog.cpp 91 static const unsigned kHistorySize = 16;
212 for (unsigned i = 0; i < _info.Paths.Size() && i < kHistorySize; i++)
360 if (_path.GetCount() >= kHistorySize)

Completed in 2683 milliseconds