search for: hytparadisee

Displaying 6 results from an estimated 6 matches for "hytparadisee".

2008 May 29
0
Again, teach me speex AEC please!
...(*env)->ReleaseByteArrayElements(env, buf2, bytes2, 0); } /**************************************************************************************/ /* * Speex.java * * 21 May 2008 * * copyright : (C) 2008 by Yun Tao Hai and Beijing Teng Yun Software Inc. * email : hytparadisee at gmail.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distribut...
2007 Aug 21
0
Need help on making speex AEC to work
Hello All I'm accessing speex via jni, I have successfully decoded and encoded data and capture and play it back in java. Now my challenge is speex's echo canceller. My capture and playback are not synchronized, so i got to use the method from 1.2beta2 right? What's the proper way to fit speex_echo_capture() and speex_echo_playback() into the following procedures, assuming they were
2007 Aug 27
1
Echo canceller end up more echo than before.
Perhaps that's because I have some problem understanding the documentation, or dunno how to fine tune it. I tried to use the echo canceller to cancel out echo in case it is present, but when I tried it, it gives me echo even there is no echo at all, and the echo is more serious if there is echo present. I'm using speex with JNI, I shall give more details if needed. But i just want to
2007 Sep 27
1
Need some clarifications about "speex_preprocess_run"
Simple questions:1. when this method is called for each frame, do I have to call them twice for both the encode process and the decode process?2. does preprocessor do preprocessing on raw PCM data or on encoded speex data? I need to clarify this because i want to know when should I call this function, before the encoding process (i.e. preprocess the pcm data) or after the encoding process (i.e.
2007 Oct 02
0
Anyone tried to call speex from jni? Need help here!
Hello folks. I am using speex through jni. I have no problem doing encoding and decoding but I would like to use the preprocessor feature. The problem is my JVM always crash when speex_preprocess_run() is invoked. I cannot give conclusion that it is this function that caused the error because I checked the error log and there is no trace to it. However, if I commented out this line, everything
2008 Jan 14
1
How to use the speex AEC
I would like to add AEC to my program. Since the nature of my program is such that its playback and recording are asynchronous. I have no idea whether the testecho.c example will work for me. Anyone here has experience with the AEC in async mode? YUN TAO