misc.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  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. #ifndef MISC_H
  35. #define MISC_H
  36. #ifndef SPEEX_VERSION
  37. #define SPEEX_MAJOR_VERSION 1
  38. #define SPEEX_MINOR_VERSION 1
  39. #define SPEEX_MICRO_VERSION 10
  40. #define SPEEX_EXTRA_VERSION ""
  41. #define SPEEX_VERSION "speex-1.1.10"
  42. #endif
  43. #include "arch.h"
  44. #ifndef RELEASE
  45. void print_vec(float *vec, int len, char *name);
  46. #endif
  47. spx_uint32_t be_int(spx_uint32_t i);
  48. spx_uint32_t le_int(spx_uint32_t i);
  49. /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_free */
  50. void *speex_alloc (int size);
  51. /** Same as speex_alloc, except that the area is only needed inside a Speex call (might cause problem with wideband though) */
  52. void *speex_alloc_scratch (int size);
  53. /** Speex wrapper for realloc. To do your own dynamic allocation, all you need to do is replace this function, speex_alloc and speex_free */
  54. void *speex_realloc (void *ptr, int size);
  55. /** Speex wrapper for calloc. To do your own dynamic allocation, all you need to do is replace this function, speex_realloc and speex_alloc */
  56. void speex_free (void *ptr);
  57. /** Same as speex_alloc, except that the area is only needed inside a Speex call (might cause problem with wideband though) */
  58. void speex_free_scratch (void *ptr);
  59. /** Speex wrapper for mem_move */
  60. void *speex_move (void *dest, void *src, int n);
  61. void speex_memcpy_bytes(char *dst, char *src, int nbytes);
  62. void speex_memset_bytes(char *dst, char src, int nbytes);
  63. void speex_error(const char *str);
  64. void speex_warning(const char *str);
  65. void speex_warning_int(const char *str, int val);
  66. void speex_rand_vec(float std, spx_sig_t *data, int len);
  67. spx_word32_t speex_rand(spx_word16_t std, spx_int32_t *seed);
  68. void _speex_putc(int ch, void *file);
  69. #endif