Searched defs:echo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/cat/
H A DInput.java36 public boolean echo; field in class:Input
50 echo = false;
65 echo = in.readInt() == 1 ? true : false;
84 dest.writeInt(echo ? 1 : 0);
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp628 // FIXME: temporary code to overcome echo and mic gain issues on herring and tuna boards.
828 // check if platform supports echo cancellation and do not active local echo suppression in
830 EchoSuppressor *echo = NULL; local
849 // Create local echo suppressor if platform AEC cannot be used.
851 echo = new EchoSuppressor(sampleCount,
915 if (echo != NULL) {
916 LOGV("echo->run()");
917 echo->run(output, input);
924 delete echo;
[all...]

Completed in 111 milliseconds