Searched refs:fs_hz_ (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/modules/audio_coding/neteq/ |
D | comfort_noise.cc | 48 assert(fs_hz_ == 8000 || fs_hz_ == 16000 || fs_hz_ == 32000 || in Generate() 49 fs_hz_ == 48000); in Generate() 88 if (fs_hz_ == 8000) { in Generate() 93 } else if (fs_hz_ == 16000) { in Generate() 98 } else if (fs_hz_ == 32000) { in Generate()
|
D | merge.cc | 34 : fs_hz_(fs_hz), in Merge() 36 fs_mult_(fs_hz_ / 8000), in Merge() 37 timestamps_per_call_(static_cast<size_t>(fs_hz_ / 100)), in Merge() 50 assert(fs_hz_ == 8000 || fs_hz_ == 16000 || fs_hz_ == 32000 || in Process() 51 fs_hz_ == 48000); in Process() 52 assert(fs_hz_ <= kMaxSampleRate); // Should not be possible. in Process() 266 int decimation_factor = fs_hz_ / 4000; in Downsample() 268 size_t length_limit = static_cast<size_t>(fs_hz_ / 100); // 10 ms in samples. in Downsample() 269 if (fs_hz_ == 8000) { in Downsample() 272 } else if (fs_hz_ == 16000) { in Downsample() [all …]
|
D | comfort_noise.h | 39 : fs_hz_(fs_hz), in ComfortNoise() 41 overlap_length_(5 * fs_hz_ / 8000), in ComfortNoise() 62 int fs_hz_;
|
D | normal.h | 39 : fs_hz_(fs_hz), in Normal() 43 samples_per_ms_(rtc::CheckedDivExact(fs_hz_, 1000)), in Normal() 61 int fs_hz_;
|
D | expand.cc | 40 fs_hz_(fs), in Expand() 82 int fs_mult = fs_hz_ / 8000; in Process() 147 if (fs_hz_ == 8000) { in Process() 152 } else if (fs_hz_ == 16000) { in Process() 157 } else if (fs_hz_ == 32000) { in Process() 318 rtc::dchecked_cast<size_t>(fs_hz_ * 2)); in Process() 326 statistics_->LogDelayedPacketOutageEvent(expand_duration_samples_, fs_hz_); in SetParametersForNormalAfterExpand() 327 statistics_->EndExpandEvent(fs_hz_); in SetParametersForNormalAfterExpand() 334 statistics_->EndExpandEvent(fs_hz_); in SetParametersForMergeAfterExpand() 384 int fs_mult = fs_hz_ / 8000; in AnalyzeSignal() [all …]
|
D | neteq_impl.cc | 175 fs_hz_ = fs; in NetEqImpl() 179 controller_->SetSampleRate(fs_hz_, output_size_samples_); in NetEqImpl() 383 return delay_samples / rtc::CheckedDivExact(fs_hz_, 1000) + in FilteredCurrentDelayMs() 396 stats_->GetNetworkStatistics(fs_hz_, total_samples_in_buffers, in NetworkStatistics() 419 1000 / fs_hz_; in GetOperationsAndState() 420 result.current_frame_size_ms = decoder_frame_length_ * 1000 / fs_hz_; in GetOperationsAndState() 501 nack_->UpdateSampleRate(fs_hz_); in EnableNack() 529 rtc::CheckedDivExact(fs_hz_, 1000)); in SyncBufferSizeMs() 772 if (decoder_info->SampleRateHz() != fs_hz_ || in InsertPacketInternal() 779 nack_->UpdateSampleRate(fs_hz_); in InsertPacketInternal() [all …]
|
D | merge.h | 51 const int fs_hz_;
|
D | expand.h | 92 const int fs_hz_; variable
|
D | normal.cc | 46 const int fs_mult = fs_hz_ / 8000; in Process()
|
D | neteq_impl.h | 366 int fs_hz_ RTC_GUARDED_BY(mutex_);
|