search for: pcmmode

Displaying 4 results from an estimated 4 matches for "pcmmode".

Did you mean: cmode
2006 Jan 19
1
Compile error (svn 10743)
...oip\mod_speexrefcode\mdf.c(639) : error C2057: expected constant expression 1>d:\voip\mod_speexrefcode\mdf.c(639) : error C2466: cannot allocate an array of constant size 0 1>d:\voip\mod_speexrefcode\mdf.c(639) : error C2133: 'w' : unknown size 3. pcm_wrappers.c typedef struct { } PCMMode; static PCMMode pcmmode; int pcm_mode_query(const void *mode, int request, void *ptr) { const PCMMode *m = (const PCMMode*)mode; switch (request) { default: speex_warning_int("Unknown nb_mode_query request: ", request); return -1; } return 0;...
2006 Jan 19
0
Compile error (svn 10743)
...oip\mod_speexrefcode\mdf.c(639) : error C2057: expected constant expression 1>d:\voip\mod_speexrefcode\mdf.c(639) : error C2466: cannot allocate an array of constant size 0 1>d:\voip\mod_speexrefcode\mdf.c(639) : error C2133: 'w' : unknown size 3. pcm_wrappers.c typedef struct { } PCMMode; static PCMMode pcmmode; int pcm_mode_query(const void *mode, int request, void *ptr) { const PCMMode *m = (const PCMMode*)mode; switch (request) { default: speex_warning_int("Unknown nb_mode_query request: ", request); return -1; } return 0;...
2006 Apr 04
2
Error in pcm_wrapper.c release 1.1.12
Please, I need your help! I'm not able to compile.... typedef struct { } PCMMode; static PCMMode ; int pcm_mode_query(const void *mode, int request, void *ptr) { /*const PCMMode *m = (const PCMMode*)mode;*/ switch (request) { default: speex_warning_int("Unknown nb_mode_query request: ", request); return -1; } return 0; } /*...
2006 Apr 04
1
Error in pcm_wrapper.c release 1.1.12
> > Please, I need your help! > > I'm not able to compile.... > > > typedef struct { > > } PCMMode; > > It's wrong in pure C, there must be at least one field. Then just add int dummy. Actually, this code is pretty much useless at the moment, so you can simply remove it from the build and it'll work. > 2All: can't compile libspeex from trunk with Microsoft compiler. The f...