~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

Viewing changes to speex/libspeex/misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2004-06-30 13:58:16 UTC
  • Revision ID: james.westby@ubuntu.com-20040630135816-wwx75gdlodkqbabb
Tags: upstream-0.12.2
ImportĀ upstreamĀ versionĀ 0.12.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 VERSION
 
39
#define VERSION "speex-1.1"
 
40
#endif
 
41
 
 
42
#include "arch.h"
 
43
 
 
44
#ifndef RELEASE
 
45
void print_vec(float *vec, int len, char *name);
 
46
#endif
 
47
 
 
48
unsigned int be_int(unsigned int i);
 
49
unsigned int le_int(unsigned int i);
 
50
 
 
51
 
 
52
unsigned short be_short(unsigned short s);
 
53
unsigned short le_short(unsigned short s);
 
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_error(char *str);
 
68
 
 
69
void speex_warning(char *str);
 
70
 
 
71
void speex_warning_int(char *str, int val);
 
72
 
 
73
void speex_rand_vec(float std, spx_sig_t *data, int len);
 
74
 
 
75
float speex_rand(float std);
 
76
 
 
77
void _speex_putc(int ch, void *file);
 
78
 
 
79
#endif