diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-10-30 09:00:45 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-10-30 09:00:45 -0300 |
commit | ab4126f51061277e87b41c48b40e7b54942d4eca (patch) | |
tree | c58168b60323c4d43b58743b099e562a89e60a56 /drivers/speex/speex_bind.cpp | |
parent | 8b15b26eedad4fdd33d50f5f9aa0fcc1875d503f (diff) | |
parent | 914015f3b63dd956e72ea937d46ea4b2db005ada (diff) | |
download | redot-engine-ab4126f51061277e87b41c48b40e7b54942d4eca.tar.gz |
Merge branch 'master' of https://github.com/godotengine/godot
Diffstat (limited to 'drivers/speex/speex_bind.cpp')
-rw-r--r-- | drivers/speex/speex_bind.cpp | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/drivers/speex/speex_bind.cpp b/drivers/speex/speex_bind.cpp deleted file mode 100644 index d15bb3da8c..0000000000 --- a/drivers/speex/speex_bind.cpp +++ /dev/null @@ -1,64 +0,0 @@ - -#include "memory.h" -#include "speex_bind.h" -#include -#ifdef __cplusplus -extern "C" { -#endif - -void *speex_alloc (int size) { - - uint8_t * mem = (uint8_t*)memalloc(size); - for(int i=0;i<size;i++) - mem[i]=0; - return mem; -} - -void *speex_alloc_scratch (int size) { - - return memalloc(size); -} - -void *speex_realloc (void *ptr, int size) { - - return memrealloc(ptr,size); -} - -void speex_free (void *ptr) { - - memfree(ptr); -} - -void speex_free_scratch (void *ptr) { - - memfree(ptr); -} - -void _speex_fatal(const char *str, const char *file, int line) { - - _err_print_error("SPEEX ERROR",p_file,p_line,str); -} - -void speex_warning(const char *str) { - - _err_print_error("SPEEX WARNING","",0,str); -} - -void speex_warning_int(const char *str, int val) { - - _err_print_error("SPEEX WARNING INT","Value",val,str); -} - -void speex_notify(const char *str) { - - print_line(str); -} - -void _speex_putc(int ch, void *file) { - - // will not putc, no. -} - -#ifdef __cplusplus -} -#endif |