org.quietmodem.Quiet icon indicating copy to clipboard operation
org.quietmodem.Quiet copied to clipboard

Initializing "NetworkInterface" echos sound without send or receive

Open dstechs opened this issue 5 years ago • 0 comments

Intialialize (onCreate())

initFrameTransmissionConfig();
initNetwork();
 private void initFrameTransmissionConfig() throws Exception {
        transmitterConfig = new FrameTransmitterConfig(
                this,
                "audible-7k-channel-0");
        receiverConfig = new FrameReceiverConfig(
                this,
                "audible-7k-channel-0");

        conf = new NetworkInterfaceConfig(
                receiverConfig,
                transmitterConfig);
    }

private void initNetwork() throws Exception {
       intf = new NetworkInterface(conf);
}

once I call initNetwork() sound transmittion plays audio for min 3 times Please check video for more clarification issue_video.zip

dstechs avatar Jul 28 '18 06:07 dstechs