Displaying 15 results from an estimated 15 matches for "kiss_fftr".
Did you mean:
kiss_fft
2007 Apr 17
1
question about spx_fft
...on effects).
>
> > My hardware logic can perform N real point FFT real fast and it produce
> > N complex fft results
>
> If that's the case, then you can still benefit by converting the N-point
> real FFT into an N/2 point complex FFT and an update pass.
This is what the kiss_fftr function does, right?
> > RIRIRI...RI. How does it map to your N/2 complex
> > output especially
> > the first R and last R in your sequecne?
>
> The packing is actually R(0), R(1), I(1), R(2), I(2), ... R(N/2)
> Because the input is real, it means that I(0) and R(N/2)...
2007 Dec 11
0
[PATCH] update symbian build
...THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+TARGET speexdsp.lib
+TARGETTYPE lib
+UID 0
+MACRO HAVE_CONFIG_H
+SOURCEPATH ..\libspeex
+SOURCE buffer.c fftwrap.c filterbank.c
+SOURCE jitter.c kiss_fft.c kiss_fftr.c
+SOURCE mdf.c preprocess.c resample.c smallft.c
+USERINCLUDE . ..\include\speex
+SYSTEMINCLUDE \epoc32\include \epoc32\include\libc ..\include
Index: symbian/bld.inf
===================================================================
--- symbian/bld.inf (revision 14293)
+++ symbian/b...
2006 Nov 15
2
[PATCH] symbian port
hi,
this patch should fix the symbian build.
/alfred
-------------- next part --------------
A non-text attachment was scrubbed...
Name: speex-symbian2.patch
Type: text/x-patch
Size: 2669 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/speex-dev/attachments/20061115/5ac4915e/speex-symbian2.bin
2006 Nov 15
1
[PATCH] symbian port
...eex
>> SOURCE bits.c cb_search.c exc_5_64_table.c exc_5_256_table.c exc_8_128_table.c
>> -SOURCE exc_10_16_table.c exc_10_32_table.c exc_20_32_table.c filters.c gain_table.c
>> +SOURCE exc_10_16_table.c exc_10_32_table.c exc_20_32_table.c fftwrap.c kiss_fft.c kiss_fftr.c filterbank.c filters.c gain_table.c
>> SOURCE gain_table_lbr.c hexc_10_32_table.c hexc_table.c high_lsp_tables.c jitter.c
>> SOURCE lbr_48k_tables.c lpc.c lsp.c lsp_tables_nb.c ltp.c math_approx.c mdf.c misc.c
>> SOURCE modes.c nb_celp.c preprocess.c quan...
2009 Nov 17
1
[PATCH] Change name of libcelt to libceltXYZ
...+lib_LTLIBRARIES = libcelt at LIBCELT_SUFFIX@.la
# Sources for compilation in the library
-libcelt_la_SOURCES = bands.c celt.c cwrs.c ecintrin.h entcode.c \
+libcelt at LIBCELT_SUFFIX@_la_SOURCES = bands.c celt.c cwrs.c ecintrin.h entcode.c \
entdec.c entenc.c header.c kfft_single.c kiss_fft.c kiss_fftr.c laplace.c mdct.c \
modes.c pitch.c psy.c quant_bands.c rangedec.c rangeenc.c rate.c \
vq.c
#noinst_HEADERS =
-libcelt_la_LDFLAGS = -version-info @CELT_LT_CURRENT@:@CELT_LT_REVISION@:@CELT_LT_AGE@
+libcelt at LIBCELT_SUFFIX@_la_LDFLAGS = -version-info @CELT_LT_CURRENT@:@CELT_LT_REVISION@:...
2006 Jun 07
7
AEC frame size
?
hi all,
i am using the Acoustic Echo Cancellation from "Speex 1.1.12 version" in my VOIP application. Is it that the frame length to be chosen should always be 20ms or can i have flexibility in chosing the frame lenght?
on what parameters does the frame length choise depends?
thank you all,
Shri.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Nov 15
0
[PATCH] symbian port
.....\libspeex
> SOURCE bits.c cb_search.c exc_5_64_table.c exc_5_256_table.c exc_8_128_table.c
> -SOURCE exc_10_16_table.c exc_10_32_table.c exc_20_32_table.c filters.c gain_table.c
> +SOURCE exc_10_16_table.c exc_10_32_table.c exc_20_32_table.c fftwrap.c kiss_fft.c kiss_fftr.c filterbank.c filters.c gain_table.c
> SOURCE gain_table_lbr.c hexc_10_32_table.c hexc_table.c high_lsp_tables.c jitter.c
> SOURCE lbr_48k_tables.c lpc.c lsp.c lsp_tables_nb.c ltp.c math_approx.c mdf.c misc.c
> SOURCE modes.c nb_celp.c preprocess.c quant_lsp.c sb_c...
2007 Sep 14
0
Speex echo canceller creating some problems. No voice coming.
Hi,
I am new to speex so please redirect me to some links if the question is
repetative.
Just for testing the echo canceller performance, I have added
mdf,fftwrap,misc,kiss_fftr,kiss_fft source files to my project.
Now In my multithread application when I receive packets from mice, I calls
speex_echo_capture(echo_state, input_frame, output_frame,Youtput_frame)
with input_frame as data received from mice(160 bytes as I am using G711
codec) and I send data out receiv...
2006 Jun 08
3
Echo canceller problem
Hello everybody.
I have the same problem like you. I use ARM microcontroller too.
Here is the list of all functions called by speex_echo_cancel until goes
into infinite loop:
speex_echo_cancel()
|
spx_fft
|
kiss_fftr
|
kiss_fft
|
kiss_fft_stride
|
kf_work
Function kf_work looks like:
static void kf_work(kiss_fft_cpx * Fout, const kiss_fft_cpx * f, const
size_t fstride, int in_stride, int * factors, const kiss_fft_cfg st)
{
kiss_fft_cpx * Fout_beg=Fout;
const int p=*factors++; // the radix
co...
2006 Aug 14
2
AEC on a TI C6x - has no effect
...ncel function is called or not.
Let me first give more details about what I'm doing.
Since I'm only interested in AEC (we use a simple a-Law for the audio
compression), I created a lib that only includes the following files,
all from directory \trunk\speex\libspeex:
fftwrap.c
kiss_fft.c
kiss_fftr.c
math_approx.c
mdf.c
misc.c
This appears to be sufficient to call the speex_echo_* functions without
a linker error. I define the preprocessor symbols CONFIG_TI_C6X and
HAVE_CONFIG_H. FIXED_POINT is defined in ti/config.h (also from the
trunk). I am using the latest files from svn, as of last Thu...
2009 Jan 14
0
[PATCH] Pitch now quantised at the band level, got rid of all the VQ code.
...file.am
index d34c1dc..7c574cc 100644
--- a/libcelt/Makefile.am
+++ b/libcelt/Makefile.am
@@ -16,7 +16,7 @@ lib_LTLIBRARIES = libcelt.la
# Sources for compilation in the library
libcelt_la_SOURCES = bands.c celt.c cwrs.c ecintrin.h entcode.c \
entdec.c entenc.c header.c kfft_single.c kiss_fft.c kiss_fftr.c laplace.c mdct.c \
- modes.c pitch.c psy.c quant_bands.c quant_pitch.c rangedec.c rangeenc.c rate.c \
+ modes.c pitch.c psy.c quant_bands.c rangedec.c rangeenc.c rate.c \
vq.c
#noinst_HEADERS =
@@ -26,8 +26,8 @@ libcelt_la_LDFLAGS = -version-info @CELT_LT_CURRENT@:@CELT_LT_REVISION@:@CELT_LT...
2007 Apr 15
3
question about spx_fft
Hi Jean-Marc and list,
Is the spx_fft function in fftwrap.c a standard fft function?
void spx_fft(void *table, spx_word16_t *in, spx_word16_t *out)
When I say standard, I mean the input "in" is 128 point short data for
example and
the output "out" is 128 short complex value which is stored in 256
short array with real and
image part. Looks like the function did some
2017 May 29
0
[PATCH] Add CMake build script
...LIBS)
+ set_target_properties (speex PROPERTIES
+ C_VISIBILITY_PRESET hidden)
+endif()
+if(USE_SMALLFT)
+ target_sources(speex PRIVATE
+ libspeex/smallft.c)
+elseif(USE_KISS_FFT)
+ target_sources(speex PRIVATE
+ libspeex/kiss_fft.c
+ libspeex/_kiss_fft_guts.h
+ libspeex/kiss_fft.h
+ libspeex/kiss_fftr.c
+ libspeex/kiss_fftr.h)
+endif()
+if(VORBIS_PSYCHO)
+ target_sources(speex PRIVATE
+ libspeex/vorbis_psy.h
+ libspeex/vorbis_psy.c)
+endif()
+
+# Programs
+
+if(NOT DISABLE_BINARIES)
+
+SET(speexenc_SOURCES
+ src/speexenc.c
+ src/wav_io.c
+ src/skeleton.c)
+add_executable(speexenc ${speexenc_S...
2008 Mar 29
0
GCC/ELF Visibility patch
...compute_bank32
-T filterbank_compute_psd
-T filterbank_compute_psd16
-T filterbank_destroy
-T filterbank_new
-T filterbank_psy_smooth
T _fini
T _init
T jitter_buffer_ctl
@@ -21,14 +14,6 @@
T jitter_buffer_reset
T jitter_buffer_tick
T jitter_buffer_update_delay
-T kiss_fft
-T kiss_fft_alloc
-T kiss_fftr
-T kiss_fftr2
-T kiss_fftr_alloc
-T kiss_fftri
-T kiss_fftri2
-T kiss_fft_stride
T speex_buffer_destroy
T speex_buffer_get_available
T speex_buffer_init
@@ -40,7 +25,6 @@
T speex_echo_cancellation
T speex_echo_capture
T speex_echo_ctl
-T speex_echo_get_residual
T speex_echo_playback
T speex...
2008 Mar 29
2
GCC/ELF Visibility patch (fwd)
...compute_bank32
-T filterbank_compute_psd
-T filterbank_compute_psd16
-T filterbank_destroy
-T filterbank_new
-T filterbank_psy_smooth
T _fini
T _init
T jitter_buffer_ctl
@@ -21,14 +14,6 @@
T jitter_buffer_reset
T jitter_buffer_tick
T jitter_buffer_update_delay
-T kiss_fft
-T kiss_fft_alloc
-T kiss_fftr
-T kiss_fftr2
-T kiss_fftr_alloc
-T kiss_fftri
-T kiss_fftri2
-T kiss_fft_stride
T speex_buffer_destroy
T speex_buffer_get_available
T speex_buffer_init
@@ -40,7 +25,6 @@
T speex_echo_cancellation
T speex_echo_capture
T speex_echo_ctl
-T speex_echo_get_residual
T speex_echo_playback
T speex...