search for: speex_mode_list

Displaying 6 results from an estimated 6 matches for "speex_mode_list".

2004 Nov 03
2
libspeex.dll
...l "speex_encoder_init" expect a pointer of "speex_nb_mode". Sadly, this constant is not exported by the windows dll (see export table of "libspeex.dll" v1.1.6). Just as extern const SpeexMode speex_nb_mode; extern const SpeexMode speex_wb_mode; extern const SpeexMode *speex_mode_list[SPEEX_NB_MODES]; Unfortunately we could not find any further information or other implemantations of libspeex to solve our problem. regards, Grigory Fishilevich -- NEU +++ DSL Komplett von GMX +++ http://www.gmx.net/de/go/dsl GMX DSL-Netzanschluss + Tarif zum supergünstigen Komplett-Preis!
2017 Nov 03
1
[PATCH] Check for _WIN32 instead of WIN32 in preprocessor checks
...on.h | 2 +- tmv/config.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/speex/speex.h b/include/speex/speex.h index 28c4b44d..34919e2f 100644 --- a/include/speex/speex.h +++ b/include/speex/speex.h @@ -412,7 +412,7 @@ extern const SpeexMode * const speex_mode_list[SPEEX_NB_MODES]; /** Obtain one of the modes available */ const SpeexMode * speex_lib_get_mode (int mode); -#ifndef WIN32 +#ifndef _WIN32 /* We actually override the function in the narrowband case so that we can avoid linking in the wideband stuff */ #define speex_lib_get_mode(mode) ((mode)=...
2008 Apr 07
3
speex affected by vulnerability described in [oCERT 2008-02]
Hi folks, we've tried contacting Jean-Marc Valin but email address bounces. We published yesterday an advisory about libfishsound, you can find it at the following URL: http://www.ocert.org/advisories/ocert-2008-2.html The issues seems to affect Speex (since the code is the same) versions <= 1.1.12. While the 1.2beta branch is not vulnerable we advise that you fix with a security release
2008 Mar 29
0
GCC/ELF Visibility patch
...IPH_PATH_OGG([src="src"], [src=""]) Index: libspeex/modes_wb.c =================================================================== --- libspeex/modes_wb.c (revision 14645) +++ libspeex/modes_wb.c (working copy) @@ -52,7 +52,7 @@ #define NULL 0 #endif -const SpeexMode * const speex_mode_list[SPEEX_NB_MODES] = {&speex_nb_mode, &speex_wb_mode, &speex_uwb_mode}; +EXPORT const SpeexMode * const speex_mode_list[SPEEX_NB_MODES] = {&speex_nb_mode, &speex_wb_mode, &speex_uwb_mode}; extern const signed char hexc_table[]; extern const signed char hexc_10_32_table[]; @...
2008 Mar 29
2
GCC/ELF Visibility patch (fwd)
...IPH_PATH_OGG([src="src"], [src=""]) Index: libspeex/modes_wb.c =================================================================== --- libspeex/modes_wb.c (revision 14645) +++ libspeex/modes_wb.c (working copy) @@ -52,7 +52,7 @@ #define NULL 0 #endif -const SpeexMode * const speex_mode_list[SPEEX_NB_MODES] = {&speex_nb_mode, &speex_wb_mode, &speex_uwb_mode}; +EXPORT const SpeexMode * const speex_mode_list[SPEEX_NB_MODES] = {&speex_nb_mode, &speex_wb_mode, &speex_uwb_mode}; extern const signed char hexc_table[]; extern const signed char hexc_10_32_table[]; @...
2004 Aug 06
2
[PATCH] Make SSE Run Time option. Add Win32 SSE code
...eex-1.0.3-orig/libspeex/modes.c speex-1.0.3/libspeex/modes.c --- speex-1.0.3-orig/libspeex/modes.c 2003-06-02 22:29:39.000000000 -0700 +++ speex-1.0.3/libspeex/modes.c 2004-01-08 20:46:26.000000000 -0800 @@ -45,6 +45,7 @@ #define NULL 0 #endif +int global_use_mmx_sse = 0; SpeexMode *speex_mode_list[SPEEX_NB_MODES] = {&speex_nb_mode, &speex_wb_mode, &speex_uwb_mode}; /* Extern declarations for all codebooks we use here */ @@ -585,16 +586,27 @@ int speex_encoder_ctl(void *state, int request, void *ptr) { - return (*((SpeexMode**)state))->enc_ctl(state, request, ptr); +...