Compare commits

...

5 Commits
1.2rc2 ... main

Author SHA1 Message Date
8dfa1650ca [DEV] remove lutin build 2015-06-15 22:24:22 +02:00
fd86c39270 [BUILD] update new lutin 0.5.3 2015-05-08 22:46:06 +02:00
b0cc582eab [DEV] set compilation back 2015-03-20 23:18:16 +01:00
b34a74f479 [DEV] add gitignore 2015-01-06 22:12:33 +01:00
6ce6009a0d [BUILD] add lutin build 2015-01-06 21:53:52 +01:00
3 changed files with 16 additions and 4 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.pyc
Makefile
*~
*.o

View File

@ -1,4 +0,0 @@
speex
=====
(external) (BSD 3 clauses) lib speex

View File

@ -0,0 +1,12 @@
#ifndef __SPEEX_TYPES_H__
#define __SPEEX_TYPES_H__
#include <stdint.h>
typedef int16_t spx_int16_t;
typedef uint16_t spx_uint16_t;
typedef int32_t spx_int32_t;
typedef uint32_t spx_uint32_t;
#endif