Lines Matching refs:voe

103   private VoiceEngine voe;
158 voe = new VoiceEngine();
159 check(voe.init() == 0, "Failed voe Init");
160 audioChannel = voe.createChannel();
161 check(audioChannel >= 0, "Failed voe CreateChannel");
163 check(vie.init() == 0, "Failed voe Init");
164 check(vie.setVoiceEngine(voe) == 0, "Failed setVoiceEngine");
166 check(audioChannel >= 0, "Failed voe CreateChannel");
177 check(voe.setSpeakerVolume(volumeLevel) == 0,
179 check(voe.setAecmMode(VoiceEngine.AecmModes.SPEAKERPHONE, false) == 0,
230 check(voe.deleteChannel(audioChannel) == 0, "VoE delete channel failed");
231 voe.dispose();
284 check(voe.startListen(audioChannel) == 0, "Failed StartListen");
285 check(voe.startPlayout(audioChannel) == 0, "VoE start playout failed");
286 check(voe.startSend(audioChannel) == 0, "VoE start send failed");
292 check(voe.stopSend(audioChannel) == 0, "VoE stop send failed");
293 check(voe.stopPlayout(audioChannel) == 0, "VoE stop playout failed");
294 check(voe.stopListen(audioChannel) == 0, "VoE stop listen failed");
308 CodecInst codec = voe.getCodec(codecNumber);
309 check(voe.setSendCodec(audioChannel, codec) == 0, "Failed setSendCodec");
314 String[] retVal = new String[voe.numOfCodecs()];
315 for (int i = 0; i < voe.numOfCodecs(); ++i) {
316 CodecInst codec = voe.getCodec(i);
324 CodecInst[] retVal = new CodecInst[voe.numOfCodecs()];
325 for (int i = 0; i < voe.numOfCodecs(); ++i) {
326 retVal[i] = voe.getCodec(i);
349 check(voe.setLocalReceiver(audioChannel, audioRxPort) == 0,
362 check(voe.setAgcConfig(agc_config) == 0, "VoE set AGC Config failed");
363 check(voe.setAgcStatus(enableAgc, VoiceEngine.AgcModes.FIXED_DIGITAL) == 0,
371 check(voe.setNsStatus(enableNs,
380 check(voe.setEcStatus(enable, VoiceEngine.EcModes.AECM) == 0,
381 "voe setEcStatus");
401 check(voe.stopDebugRecording() == 0, "Failed stopping debug");
409 check(voe.startDebugRecording(debugDirectory + String.format("/apm_%d.dat",
417 check(voe.stopRtpDump(videoChannel,
419 "voe stopping rtp dump");
423 check(voe.startRtpDump(videoChannel, debugDirectory +
426 "voe starting rtp dump");
557 check(voe.setSendDestination(audioChannel, audioTxPort,