1 /* Copyright (C) 2002 Jean-Marc Valin */
2 /**
3    @file misc.h
4    @brief Various compatibility routines for Speex
5 */
6 /*
7    Redistribution and use in source and binary forms, with or without
8    modification, are permitted provided that the following conditions
9    are met:
10 
11    - Redistributions of source code must retain the above copyright
12    notice, this list of conditions and the following disclaimer.
13 
14    - Redistributions in binary form must reproduce the above copyright
15    notice, this list of conditions and the following disclaimer in the
16    documentation and/or other materials provided with the distribution.
17 
18    - Neither the name of the Xiph.org Foundation nor the names of its
19    contributors may be used to endorse or promote products derived from
20    this software without specific prior written permission.
21 
22    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
26    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34 
35 #ifndef MISC_H
36 #define MISC_H
37 
38 #ifndef SPEEX_VERSION
39 #define SPEEX_MAJOR_VERSION 1
40 #define SPEEX_MINOR_VERSION 1
41 #define SPEEX_MICRO_VERSION 8
42 #define SPEEX_EXTRA_VERSION ""
43 #define SPEEX_VERSION "speex-1.1.8"
44 #endif
45 
46 #include "arch.h"
47 
48 #ifndef RELEASE
49 void print_vec(float *vec, int len, char *name);
50 #endif
51 
52 spx_uint32_t be_int(spx_uint32_t i);
53 spx_uint32_t le_int(spx_uint32_t i);
54 
55 /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_free */
56 void *speex_alloc (int size);
57 
58 /** Speex wrapper for realloc. To do your own dynamic allocation, all you need to do is replace this function, speex_alloc and speex_free */
59 void *speex_realloc (void *ptr, int size);
60 
61 /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_alloc */
62 void speex_free (void *ptr);
63 
64 /** Speex wrapper for mem_move */
65 void *speex_move (void *dest, void *src, int n);
66 
67 void speex_memcpy_bytes(char *dst, char *src, int nbytes);
68 void speex_memset_bytes(char *dst, char src, int nbytes);
69 
70 void speex_error(const char *str);
71 
72 void speex_warning(const char *str);
73 
74 void speex_warning_int(const char *str, int val);
75 
76 void speex_rand_vec(float std, spx_sig_t *data, int len);
77 
78 float speex_rand(float std);
79 
80 void _speex_putc(int ch, void *file);
81 
82 #endif
83