Displaying 20 results from an estimated 200 matches similar to: "Speex Resampler"
2010 Jul 15
1
Speex Echo Cancellation
Hi
I am using speex for cancelling echo.but i am not succeeded.
I need echo cancellation in urgent.Please help m.
Thanks in advance
Devi
2009 Aug 05
0
Bug in libspeexdsp resampler
There is a bug in "speex_resampler_process_interleaved_int" and
"speex_resampler_process_interleaved_float" in the resampler. It seems
that when "speex_resampler_process_int" is called for the first channel,
"in_len" is set to the actual number of samples used (when output
limited), which you would think would be OK to use for all the
subsequent calls
2012 May 02
1
[PATCH] resample: Fix input indexing bug from interleaved functions
From: Jyri Sarha <jsarha at ti.com>
This bug happens quite often when resampling from a low to a high
sample-rate with big enough factor. Also the resampling call has to
be limited by the output buffer size and some unused samples needs be
left in the input buffer.
Sometimes when up-sampling with a big factor the resampling function
wants to peek one more sample from the input buffer to
2008 Mar 29
0
GCC/ELF Visibility patch
Hi,
I've attached a patch against SVN r14645 which adds GCC visibility
information to all symbols exported from libspeex.so and libspeexdsp.so.
It includes a configure.ac change to test that both the compiler flags and
__attribute__((visibility)) works, and if so will
#define EXPORT __attribute__((visibility("default")))
and if not
#define EXPORT
I've attached a diff output
2008 May 03
2
Resampler (no api)
.. And a version without the API changes.
-------------- next part --------------
Index: libspeex/resample_sse.h
===================================================================
--- libspeex/resample_sse.h (revision 0)
+++ libspeex/resample_sse.h (revision 0)
@@ -0,0 +1,128 @@
+/* Copyright (C) 2002-2008 Jean-Marc Valin
+ * Copyright (C) 2008 Thorvald Natvig
+ */
+/**
+ @file resample_sse.h
+
2008 Mar 29
2
GCC/ELF Visibility patch (fwd)
Hi,
I've attached a patch against SVN r14645 which adds GCC visibility information
to all symbols exported from libspeex.so and libspeexdsp.so. It includes a
configure.ac change to test that both the compiler flags and
__attribute__((visibility)) works, and if so will
#define EXPORT __attribute__((visibility("default")))
and if not
#define EXPORT
I've attached a diff output
2008 May 03
0
Resampler, memory only variant
Hi,
Here's the (hopefully) final version of the resampler, now always using
st->mem as the buffer area. It only allocates buffers on the stack when
it's necesarry to convert the output between int and float.
-------------- next part --------------
Index: include/speex/speex_resampler.h
===================================================================
---
2009 Oct 26
1
[PATCH] Fix miscompile of SSE resampler
From: Thorvald Natvig <slicer at users.sourceforge.net>
Some optimizing compilers miscompile the current SSE optimizations when
full optimizations are enabled. By using output value pointer instead of
a return value, we can bypass this misbehaviour.
---
libspeex/resample.c | 8 ++++----
libspeex/resample_sse.h | 24 ++++++++----------------
2 files changed, 12 insertions(+), 20
2019 Nov 06
0
【SPEEX】 use speex resample make noise
Look, how about you start from the testresample.c file? Oh, and you seem
to be reading 320 samples at a time and processing 640, so that can't be
good (and even beyond that your code is wrong for other reasons).
Jean-Marc
On 11/6/19 1:56 AM, zhouyuchen at iauto.com wrote:
> Hello,
> I printed the log, in/out len is not truncated, which means that the
> input and output are not
2009 Oct 23
0
Little bug in the libspeexdsp resampler
Hi Jean-Marc,
I reported this bug a couple of months ago and either it got lost or I
just didn't make my case very well. Let me see if I can explain why
"speex_resampler_process_interleaved_int" and
"speex_resampler_process_interleaved_float" in the resampler have a problem.
If you call "speex_resampler_process_interleaved_int" with a small
2013 May 15
0
speex_resampler_process_interleaved_float returns NaN
Hello all
I using 1.2beta3 on Windows and implementing resampler. Audio signals
are being retrieved by Windows Core Audio API (e.g.
*IAudioCaptureClient::GetBuffer*
<http://msdn.microsoft.com/en-us/library/windows/desktop/dd370859%28v=vs.85%29.aspx>)
that are interleaved 32-bit floating point signals (-1.0 - 1.0).
Then, speex_resampler_process_interleaved_float returns NaN in the
output
2007 May 02
0
[patch] Mac Universal Binaries
Well, I don't quite understand why AC_C_BIGENDIAN and the solution
you're proposing is likely to break other big endian machines (the ones
that don't have __BIG_ENDIAN__). Can you send a patch that addresses
that (i.e. still uses AC_C_BIGENDIAN when it works)?
Jean-Marc
Peter Grayson a ?crit :
> Hi all,
>
> Speex currently decides endianness at configure-time. This causes
2019 Nov 05
0
【SPEEX】 use speex resample make noise
Be aware that inlen is an in/out parameter. It tells you how many
samples the resampler read. That number can be smaller than what you
passed -- in which case it means you need to buffer them and give them
to the resampler again in the next call.
Jean-Marc
On 11/5/19 8:27 AM, zhouyuchen at iauto.com wrote:
> Hello,
> I have encountered some problems. I want to use speex to convert the
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
Hi Jean-Marc, Hi Jim,
I have also seen some problems with the 1.1.8 release on the C55x. So far I
have boiled down the issues to the following:
1) We need our own "fixed_xx.h" header file. I don't know why, and haven't
had time to investigate, but there is a definite improvement when I use the
attached fixed_c55x.h file which has turned all the maths into inline
functions.
2010 Nov 10
0
bug fix for speex_resampler_reset_mem?
I'm using resample.c from speex in my project, and was testing it by
processing the same waveform twice, with a reset() call in the middle,
as follows:
short *input_data = read_waveform_as_linear(infileName, &rate,
&num_samples, &num_channels);
SpeexResamplerState *state = speex_resampler_init_frac(num_channels,
in_rate, out_rate, in_rate, out_rate, quality, &error);
2007 Mar 08
0
Introduction and patch
Hi Dan,
Thanks for the patch, I'll apply it to svn. One question, why do you
need this:
+void kiss_fftri2(kiss_fftr_cfg cfg,const kiss_fft_scalar
*freqdata,kiss_fft_scalar *timedata);
+
Cheers,
Jean-Marc
Dan Everton a ?crit :
> Hi,
>
> I'm one of the people working on the Rockbox project
> (http://www.rockbox.org) which is an open source alternative firmware
> for a
2011 Sep 01
0
[PATCH 3/5] resample: Add NEON optimized inner_product_single for fixed point
From: Jyri Sarha <jsarha at ti.com>
Semantics of inner_product_single have also been changed to contain
the final right shift and saturation so it can also be implemented in
the optimal way for the used platform. This change affects fixed point
calculations only.
I also added a new fixed point macro SATURATE32PSHR(x, shift, a). It
does pretty much the same thing as SATURATE32(PSHR32(x,
2014 May 16
3
Error when compiling FFmpeg with speex-git.
Hi
With 32-bit Xubuntu-14.04.
When I compile FFmpeg from git using speex-1.2rc1 it builds OK.
When I compile FFmpeg from git using speex-git it fails to build. (speex-HEAD-78cce67)
It's not a big deal, I don't mind using speex-1.2rc1.
But am I doing something wrong or is there something wrong with speex-git?
(I've put the details in a txt attachment to keep this email post
2011 Apr 09
4
5.6 - SRPM's
Hi
Is there any ETA for the SRPM's from the base tree of 5.6? I need to
get my hands on the src for the centos-release package as i have to
rebuilt it to prevent the repo definitions from being included.
I see the src's for the updates RPM's but not the base.
many thanks
2007 Apr 05
2
openssh-4.4p1 compile error.
Darren or anyone, can anyone point me to what and where
I can download the necessary src's and dependencies to
make ssh work on HP-UX 11.0 PARISC 1.0. I've been trying
to work with:
openssh-4.4p1
openssh-4.5p1
openssl-0.9.7e
openssl-0.9.8e
Jerry Moore
CSC, Principal UNIX Systems Administrator
BAE Systems Electronics & Integrated Solutions
3131 Story Road West, Irving, Texas 75038