Displaying 18 results from an estimated 18 matches similar to: "bug fix for speex_resampler_reset_mem?"
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 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
===================================================================
---
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
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
+
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,
2007 Dec 11
1
Questions about the resampler
Hi all,
I have a couple of questions about the speex resampler:
1.  Can a resampler state be used to process frames belonging to  
several audio streams? I would guess that there is information about  
the audio streams stored in the state so the answer is no, but it  
would be good to have some confirmation.
2.  What is the best way to reset a resampler state?  
speex_resampler_reset_mem appears
2008 Feb 18
2
Speex Resampler quality
Hi,
*"That's in general not very reliable. You can get PEAQ to say all sorts
of silly things."
Can you provide me links for any more effective tools other than PEAQ?
Which is more reliable for Speex resampler?
*
*"strongly suspect that it's just not compensating for the delay
introduced by the resampler. Because higher quality means higher delay,
you'd find that PEAQ
2008 Feb 18
0
Speex Resampler quality
On 2/18/08, Premkiran Mannava <loverays@gmail.com> wrote:
>
> Hi,
>
> *"That's in general not very reliable. You can get PEAQ to say all sorts
> of silly things."
>
> Can you provide me links for any more effective tools other than PEAQ?
> Which is more reliable for Speex resampler?*
I can already tell you what Jean-Marc will say -- use your ears :)
2008 Feb 14
0
Speex Resampler quality
Premkiran Mannava a ?crit :
> I just built a sample application with speex resampler in linux and I
> tried to resample 8K sine wave tone mono to 48k using
> speex_resample_process_int.  I am using a tool called EAQUAL for audio
> quality.  
That's in general not very reliable. You can get PEAQ to say all sorts
of silly things.
> I find the quality of Speex resampler to be
2010 Dec 03
0
Problems with Speex Resamplers
Hi Everyone,
Just wanted to let people know that we've uncovered some problems with
the speex resamplers in PulseAudio
The problem generally manifests itself when having the following setup.
* Server Sample Rate: 44100
* Resampler: speex-* (both fixed and float)
* Playing a 48000 stream
The problem only really manifests itself in the first 500ms or so of the
stream and then generally
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 
2010 Dec 03
2
Problems with Speex Resamplers
Colin,
If you're using stereo audio with the resampler, there is a bug that can 
occur under certain situations (and maybe that's what's been happening 
to you). Check out:
http://lists.xiph.org/pipermail/speex-dev/2009-August/007406.html
With that patch, I've used the resampler extensively in many situations 
without any problems.
John Ridges
On 12/3/2010 1:00 PM,
2007 Mar 22
1
[SPAM] RE: Encoding audio sampled at 44.1 khz?
________________________________
Hi David,
Thank you very much for your reply. Since I need to resample the audio in the program itself, I decided to try out the resampling API in speex.
But now, I have another problem. The resampled sound is very much distorted and clicks appear quite often. (I have attached the source code I used for testing it below).
The test data I had was a file sampled
2011 Sep 01
6
[PATCH 0/5] ARM NEON optimization for samplerate converter
From: Jyri Sarha <jsarha at ti.com>
I optimized Speex resampler for NEON capable ARM CPUs. The first patch
should speed up resampling on any platform that can spare the
increased memory usage. It would be nice to have these merged to the
master branch. Please let me know if there is anything I can do to 
help the the merge. The patches have been rebased on top of master 
branch in
2014 Apr 15
6
[PATCH 0/3] misc. cleanup
Hello,
some misc. cleanup patches for speexdsp, nothing big
I'm not sure about how to submit patches, so this is a test balloon :)
ultimately, I'd like to fix the FIXED_POINT issue, see
http://lists.xiph.org/pipermail/speex-dev/2013-December/008465.html
currently, I think the only way to find out how speexdsp has been compiled is
to resample some bytes and observe the output; which is
2008 Feb 14
2
Speex Resampler quality
Hi,
I just built a sample application with speex resampler in linux and I tried
to resample 8K sine wave tone mono to 48k using speex_resample_process_int.
I am using a tool called EAQUAL for audio quality.  I find the quality of
Speex resampler to be decreasing when I increase the quality q of the
resampler init function.  Can some one give me pointers regarding this?? As
per the API, if the
2007 Mar 21
2
Encoding audio sampled at 44.1 khz?
Hi everyone, 
I recently began using libspeex 1.2 Beta 1 on Windows using MS Visual C++. I have gotten a decoder and an encoder to work fine from the excellent sample code posted at the website. 
But I face a problem. I am working on using Speex in a program to play and create audio books encoded using Speex (currently testing it only; for these tests, I do not use Ogg to save the encoded