search for: enc_winbuf_size

Displaying 2 results from an estimated 2 matches for "enc_winbuf_size".

2007 Aug 29
2
high-pass filter issues
..., even just from the initial variable declarations to the top of that "for" loop I vector off. I am thinking this might have something to do with me making the state parameters static instead of running off a heap. these are the sizes and parameters I used: #ifdef STATIC_INIT #define ENC_WINBUF_SIZE 40 #define ENC_EXCBUF_SIZE 306 #define ENC_SWBUF_SIZE 306 #define ENC_LAGWINDOW_SIZE 11 #define ENC_OLD_LSP_SIZE 10 #define ENC_OLD_QLSP_SIZE 10 #define ENC_MEM_SP_SIZE 20 #define ENC_MEM_SW_SIZE 20 #define ENC_SW_WHOLE_SIZE 20 #define ENC_MEM_EXC_SIZE 20 #define ENC_MEM_EXC2_SIZE 20 #de...
2007 Sep 12
1
alignment and static variable size question
...or if they are too small b) Tell me if anything in the speex library is supposed to be aligned in any way in memory. I see there is an ALIGN define in one of the files for the stack but I am not entirely sure what that means (i'm inexperienced in C). here are all the sizes I use: #define ENC_WINBUF_SIZE 40 #define ENC_EXCBUF_SIZE 306 #define ENC_SWBUF_SIZE 306 #define ENC_LAGWINDOW_SIZE 11 #define ENC_OLD_LSP_SIZE 10 #define ENC_OLD_QLSP_SIZE 10 #define ENC_MEM_SP_SIZE 20 #define ENC_MEM_SW_SIZE 20 #define ENC_SW_WHOLE_SIZE 20 #define ENC_MEM_EXC_SIZE 20 #define ENC_MEM_EXC2_SIZE 20 #de...