search for: outside_speex

Displaying 5 results from an estimated 5 matches for "outside_speex".

Did you mean: doutside_speex
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
2017 Nov 01
2
some problem by use libopusenc
1,you say “libopusenc depends only on libopus.”but 2,so,i add speexdsp source code , but 3,so,i 。。。 but now,what can i do。i use libopus 1.2 and 1.2beta and 1.1.3 test -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/opus/attachments/20171101/40680ea1/attachment-0001.html> -------------- next part -------------- A
2013 May 08
0
Upsampling while decoding / Updating
...ectly compiled together with 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 a...
2008 May 03
2
Resampler (no api)
...+ _mm_store_sd(&ret, sum); + return ret; +} + +#endif Index: libspeex/resample.c =================================================================== --- libspeex/resample.c (revision 14829) +++ libspeex/resample.c (working copy) @@ -74,6 +74,7 @@ #include "os_support.h" #endif /* OUTSIDE_SPEEX */ +#include "stack_alloc.h" #include <math.h> #ifndef M_PI @@ -86,10 +87,6 @@ #define WORD2INT(x) ((x) < -32767.5f ? -32768 : ((x) > 32766.5f ? 32767 : floor(.5+(x)))) #endif -/*#define float double*/ -#define FILTER_SIZE 64 -#define OVERSAMPLE 8 -...
2008 May 03
0
Resampler, memory only variant
...+ _mm_store_sd(&ret, sum); + return ret; +} + +#endif Index: libspeex/resample.c =================================================================== --- libspeex/resample.c (revision 14829) +++ libspeex/resample.c (working copy) @@ -74,6 +74,7 @@ #include "os_support.h" #endif /* OUTSIDE_SPEEX */ +#include "stack_alloc.h" #include <math.h> #ifndef M_PI @@ -86,10 +87,6 @@ #define WORD2INT(x) ((x) < -32767.5f ? -32768 : ((x) > 32766.5f ? 32767 : floor(.5+(x)))) #endif -/*#define float double*/ -#define FILTER_SIZE 64 -#define OVERSAMPLE 8 -...