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

  /external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
audio_encoder_pcm16b.cc 34 config.frame_size_ms = rtc::CheckedDivExact(
35 codec_inst.pacsize, rtc::CheckedDivExact(config.sample_rate_hz, 1000));
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer_test.cc 62 rtc::CheckedDivExact(in_file.sample_rate(), kChunksPerSecond),
65 rtc::CheckedDivExact(out_file.sample_rate(), kChunksPerSecond),
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/
audio_encoder_isac_t_impl.h 29 rtc::CheckedDivExact(1000 * codec_inst.pacsize, config.sample_rate_hz);
99 rtc::CheckedDivExact(samples_in_next_packet,
100 rtc::CheckedDivExact(SampleRateHz(), 100)));
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
audio_encoder_opus.cc 28 config.frame_size_ms = rtc::CheckedDivExact(codec_inst.pacsize, 48);
150 rtc::CheckedDivExact(input_buffer_.size(), config_.num_channels),
216 return static_cast<size_t>(rtc::CheckedDivExact(config_.frame_size_ms, 10));
220 return rtc::CheckedDivExact(kSampleRateHz, 100) * config_.num_channels;
opus_unittest.cc 120 rtc::CheckedDivExact(input_audio.size(), channels_),
593 rtc::CheckedDivExact(speech_block.size(), 2 * channels_),
605 rtc::CheckedDivExact(speech_block.size(), channels_),
647 rtc::CheckedDivExact(speech_block.size(), channels_),
  /external/webrtc/webrtc/modules/audio_processing/test/
audio_file_processor.cc 20 using rtc::CheckedDivExact;
38 CheckedDivExact(file.sample_rate(), AudioFileProcessor::kChunksPerSecond),
116 CheckedDivExact(msg.sample_rate(), kChunksPerSecond),
122 CheckedDivExact(reverse_sample_rate, kChunksPerSecond),
test_utils.cc 134 rtc::CheckedDivExact(values.size(), static_cast<size_t>(3));
  /external/webrtc/webrtc/modules/audio_coding/codecs/cng/
audio_encoder_cng.cc 70 rtc::CheckedDivExact(kMaxFrameSizeMs, 10) * SamplesPer10msFrame();
261 return rtc::CheckedDivExact(10 * SampleRateHz(), 1000);
  /external/webrtc/webrtc/modules/audio_processing/
three_band_filter_bank.cc 112 : in_buffer_(rtc::CheckedDivExact(length, kNumBands)),
141 RTC_CHECK_EQ(in_buffer_.size(), rtc::CheckedDivExact(length, kNumBands));
audio_buffer.cc 39 num_bands = rtc::CheckedDivExact(num_frames, kSamplesPer16kHzChannel);
58 num_split_frames_(rtc::CheckedDivExact(proc_num_frames_, num_bands_)),
audio_processing_impl.cc     [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
codec_manager.cc 125 ci.pacsize = rtc::CheckedDivExact(
audio_coding_module_impl.cc 141 rtc::CheckedDivExact(
143 static_cast<uint32_t>(rtc::CheckedDivExact(
audio_coding_module_unittest_oldapi.cc 811 for (int i = 0; i < rtc::CheckedDivExact(kPacketSizeMs, 10); ++i) {
    [all...]
  /external/webrtc/webrtc/base/
checks.h 222 inline T CheckedDivExact(T a, T b) {
  /external/webrtc/webrtc/modules/audio_coding/neteq/
statistics_calculator.cc 173 rtc::CheckedDivExact(static_cast<int>(1000 * num_samples), fs_hz);
neteq_impl.cc 302 static_cast<int>(delay_samples) / rtc::CheckedDivExact(fs_hz_, 1000);
    [all...]

Completed in 498 milliseconds