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

  /external/webrtc/webrtc/voice_engine/test/auto_test/extended/
ec_metrics_test.cc 41 int erl, erle, rerl, a_nlp; local
48 EXPECT_EQ(0, voe_apm_->GetEchoMetrics(erl, erle, rerl, a_nlp));
51 TEST_LOG(" Echo : ERL=%5d, ERLE=%5d, RERL=%5d, A_NLP=%5d [dB], "
53 "fraction_poor_delays=%3.1f [%%]\n", erl, erle, rerl, a_nlp,
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.h 92 // Gets statistics of the echo metrics ERL, ERLE, A_NLP.
96 Stats* a_nlp);
echo_cancellation.c 452 Stats a_nlp; local
464 WebRtcAec_GetEchoStats(self->aec, &erl, &erle, &a_nlp);
518 // A_NLP
519 metrics->aNlp.instant = (int)a_nlp.instant;
521 if ((a_nlp.himean > kOffsetLevel) && (a_nlp.average > kOffsetLevel)) {
523 dtmp = kUpWeight * a_nlp.himean + (1 - kUpWeight) * a_nlp.average;
529 metrics->aNlp.max = (int)a_nlp.max;
531 if (a_nlp.min < (kOffsetLevel * (-1)))
    [all...]
aec_core.c 687 // A_NLP
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/
echo_cancellation_impl.cc 328 metrics->a_nlp.instant = my_metrics.aNlp.instant;
329 metrics->a_nlp.average = my_metrics.aNlp.average;
330 metrics->a_nlp.maximum = my_metrics.aNlp.max;
331 metrics->a_nlp.minimum = my_metrics.aNlp.min;
  /external/webrtc/webrtc/modules/audio_processing/include/
audio_processing.h 667 // (Pre non-linear processing suppression) A_NLP = 10log_10(P_echo / P_a)
668 AudioProcessing::Statistic a_nlp; member in struct:webrtc::EchoCancellation::Metrics
    [all...]
  /external/webrtc/webrtc/
common_types.h 408 StatVal a_nlp; member in struct:webrtc::__anon43988
  /external/webrtc/webrtc/voice_engine/
voe_audio_processing_impl.cc 843 int& A_NLP) {
869 A_NLP = echoMetrics.a_nlp.instant;
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
process_test.cc     [all...]
audio_processing_unittest.cc     [all...]

Completed in 611 milliseconds