Displaying 5 results from an estimated 5 matches for "random_prefix".
Did you mean:
drandom_prefix
2008 May 03
0
Resampler, memory only variant
...t --------------
Index: include/speex/speex_resampler.h
===================================================================
--- include/speex/speex_resampler.h (revision 14829)
+++ include/speex/speex_resampler.h (working copy)
@@ -73,6 +73,8 @@
#define speex_resampler_get_output_stride CAT_PREFIX(RANDOM_PREFIX,_resampler_get_output_stride)
#define speex_resampler_get_input_latency CAT_PREFIX(RANDOM_PREFIX,_resampler_get_input_latency)
#define speex_resampler_get_output_latency CAT_PREFIX(RANDOM_PREFIX,_resampler_get_output_latency)
+#define speex_resampler_set_buffer_size CAT_PREFIX(RANDOM_PREFIX,_resa...
2013 Oct 28
1
how to Build .opus file
That's true I'm trying to build it to use in android I used the
-DOUTSIDE_SPEEX. and i get
speex_resampler.h:51:2: error: #error "Please define RANDOM_PREFIX (above)
to something specific to your project to prevent symbol name clashes"
2013/10/28 Gregory Maxwell <gmaxwell at gmail.com>
> On Mon, Oct 28, 2013 at 11:26 AM, Antonio Juan <anquegi at gmail.com> wrote:
> > Hi and thanks for your interest!
> > this is the e...
2013 May 08
3
Upsampling while decoding / Updating
Dear Nikos,
thanks!
But you use Opus only for resampling, not for entirely replacing Speex,
don't you?
Greetings!
Hermie
Am 07.05.2013 22:53, schrieb Nikos Chantziaras:
> The Opus resampler is actually a bugfixed version of the Speex one. Same
> interface/API, but with the bugs removed. It's why I recommended it :-)
> Otherwise I would have recommended something entirely
2013 Oct 28
2
how to Build .opus file
Hi and thanks for your interest!
this is the error, i need to add the speex folder and a path to the .h file
and it works
Compile thumb : opus-proj <= audio-in.c
In file included from jni/../../opus-tools-0.1.7/src/audio-in.c:74:0:
proj/../../opus-tools-0.1.7/src/speex_resampler.h:90:32: fatal error:
speex/speex_types.h: No such file or directory
compilation terminated.
make: ***
2013 May 08
0
Upsampling while decoding / Updating
...ith the
rest of my code. You need these sources from the opus-tools package
(http://www.opus-codec.org/downloads/):
arch.h resample.c resample_sse.h speex_resampler.h stack_alloc.h
In your project file, define these macros:
#define SPX_RESAMPLE_EXPORT
#define OUTSIDE_SPEEX
#define RANDOM_PREFIX NAME_OF_YOUR_SOFTWARE
If your software is actually a library itself, you might to instead:
#define SPX_RESAMPLE_EXPORT __declspec(dllexport)
or whatever else you happen to be using.
With that, you should be able to include the source files directly in
your project and build them without iss...