search for: spx_cos

Displaying 9 results from an estimated 9 matches for "spx_cos".

2004 Aug 06
1
Error in compiling Speexdec code (Speex-1.1.5 code) on Windows using VC++6.0
...oject is opened in the VC++ 6.0 IDE. Now, when I simply try to compile the program, I receive this 5 error messages. error1. d:\speex\speex-1.1.5\libspeex\lsp.c(104) : error C2054: expected '(' to follow 'inline' error2. d:\speex\speex-1.1.5\libspeex\lsp.c(105) : error C2085: 'spx_cos' : not in formal parameter list error3.d:\speex\speex-1.1.5\libspeex\lsp.c(105) : error C2143: syntax error : missing ';' before '{' error4.d:\speex\speex-1.1.5\libspeex\preprocess.c(974) : error C2143: syntax error : missing ';' before 'type' error 5.d:\speex\sp...
2004 Aug 06
2
What is the format of the PCM/WAV dataforspeex_encode & speex_decode?
I thought it would be more update/better/faster, any thing wrong? In the future, would you use short, and forget about float? If so, I use 1.1.4, I wouldn't need to change my code in the future, right? You said, it's unstable, yes, I got compiling errors with MsVC6 and MsVC.net And I modified it a bit to get it compiled. Should I post the errors here? <p>-----Original Message-----
2004 Aug 06
2
Notes on 1.1.4 Windows. Testing of SSE Intrinics Code and others
Here are our notes on 1.1.4 testing on Windows 1. Compile Error with regular mode (FIXED_POINT undefined) at lsp.c line 104 static inline spx_word16_t spx_cos(spx_word16_t x) . VS6 does not like the inline keyword here. Removing it allows compiling. same with cb_search_sse.h line 34. 2. Compile Error with quant_lsp.c line 55. M_PI is undefined. Either it needs to be included in that file or placed in a header. 3. denoise.c doesn't seem...
2004 Aug 06
4
compile speexenc
Hello, Iam being to compile speexenc but I have the following error: LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other libs; use /NODEFAULTLIB:library libspeex.lib(lsp.obj) : error LNK2001: unresolved external symbol _spx_cos Debug/speexenc.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. Please, help me Guillaume --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'speex-dev-request@...
2004 Aug 06
0
compile speexenc
...ded) (D=Debug) In the propeerties are you linknig to "Multi threaded Debug" or are you manually including this file ? http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HT ML/lnk4098.asp > libspeex.lib(lsp.obj) : error LNK2001: unresolved external symbol > _spx_cos > Debug/speexenc.exe : fatal error LNK1120: 1 unresolved externals This is what is stopping your build... it is either : 1) The function spx_cos doesn't exist, 2) Are you building libspeex as a dll or a static library... if it's a dll, check the .def file to find this function. 3) Visu...
2004 Aug 06
0
Notes on 1.1.4 Windows. Testing of SSE Intrinics Code and others
> 1. Compile Error with regular mode (FIXED_POINT undefined) at lsp.c line 104 > static inline spx_word16_t spx_cos(spx_word16_t x) . VS6 does not like > the inline keyword here. Removing it allows compiling. > > same with cb_search_sse.h line 34. It seems like your compiler simply doesn't like "inline". I suggest doing a -Dinline= which is what autoconf does when it detects tha...
2004 Aug 06
1
Speex bitrate
...eprocess.c to project - Add the following to quant_lsp.c in the floating point case #ifndef M_PI #define M_PI 3.14159265358979323846 /* pi */ #endif - Replace inline with __inline in lsp.c line 105 static inline spx_word16_t spx_cos(spx_word16_t x) According to msdn: The inline keyword is available only in C++. The __inline and __forceinline keywords are available in both C and C++. When compiling in debug mode, I also get 530 warnings about double to float conversions. In release mode...
2004 Aug 06
2
denoise.c missing from 1.1.4 archive
Hi, I just downloaded http://www.speex.org/download/speex-1.1.4.tar.gz and tried to build it but the file denoise.c seems to be missing from the archive. Can you fix this or is it better to get everything from cvs? Another question, when will a stable version of 1.1 be released. I'm interested in the preprocess features but I would also like a stable encoder/decoder :-) Best regards, Chris
2004 Aug 06
2
Notes on 1.1.4 Windows. Testing of SSE Intrinics Code and others
...w days to integrate our run-time flags into 1.1.4 and I will let you know how are testing turns out. Aron Rosenberg SightSpeed At 08:54 PM 1/21/2004, you wrote: > > 1. Compile Error with regular mode (FIXED_POINT undefined) at lsp.c > line 104 > > static inline spx_word16_t spx_cos(spx_word16_t x) . VS6 does > not like > > the inline keyword here. Removing it allows compiling. > > > > same with cb_search_sse.h line 34. > >It seems like your compiler simply doesn't like "inline". I suggest >doing a -Dinline= which is what au...