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

/frameworks/opt/telephony/src/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;
86 dest.writeInt(echo ? 1 : 0);
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp633 // FIXME: temporary code to overcome echo and mic gain issues on herring and tuna boards.
837 // check if platform supports echo cancellation and do not active local echo suppression in
839 EchoSuppressor *echo = NULL; local
858 // Create local echo suppressor if platform AEC cannot be used.
860 echo = new EchoSuppressor(sampleCount,
925 if (echo != NULL) {
926 ALOGV("echo->run()");
927 echo->run(output, input);
934 delete echo;
[all...]

Completed in 219 milliseconds