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

  /external/webrtc/webrtc/modules/audio_coding/neteq/
decision_logic_unittest.cc 24 int fs_hz = 8000; local
25 int output_size_samples = fs_hz / 100; // Samples per 10 ms.
31 DecisionLogic* logic = DecisionLogic::Create(fs_hz, output_size_samples,
36 logic = DecisionLogic::Create(fs_hz, output_size_samples,
42 logic = DecisionLogic::Create(fs_hz, output_size_samples,
48 logic = DecisionLogic::Create(fs_hz, output_size_samples,
decoder_database.h 50 fs_hz(fs),
58 int fs_hz = 8000; member in struct:webrtc::DecoderDatabase::DecoderInfo
96 int fs_hz,
dtmf_tone_generator_unittest.cc 31 void TestAllTones(int fs_hz, int channels) {
36 ss << "Checking event " << event << " at sample rate " << fs_hz; local
39 ASSERT_EQ(0, tone_gen_.Init(fs_hz, event, kAttenuation));
48 double x = k3dbAttenuation * sin(2.0 * pi * f1 / fs_hz * (-n - 1)) +
49 sin(2.0 * pi * f2 / fs_hz * (-n - 1));
62 void TestAmplitudes(int fs_hz, int channels) {
70 ASSERT_EQ(0, tone_gen_.Init(fs_hz, event, 0)); // 0 attenuation.
75 ss << "Checking event " << event << " at sample rate " << fs_hz; local
78 ASSERT_EQ(0, tone_gen_.Init(fs_hz, event, attenuation));
decoder_database.cc 50 const int fs_hz = CodecSampleRateHz(codec_type); local
51 DecoderInfo info(codec_type, name, fs_hz, NULL, false);
63 int fs_hz,
71 if (fs_hz != 8000 && fs_hz != 16000 && fs_hz != 32000 && fs_hz != 48000) {
78 DecoderInfo info(codec_type, codec_name, fs_hz, decoder, true);

Completed in 57 milliseconds