spbstd.h
上传用户:cxx_68
上传日期:2021-02-21
资源大小:161k
文件大小:4k
源码类别:

语音压缩

开发平台:

Visual C++

  1. /*
  2. 2.4 kbps MELP Proposed Federal Standard speech coder
  3. Fixed-point C code, version 1.0
  4. Copyright (c) 1998, Texas Instruments, Inc.  
  5. Texas Instruments has intellectual property rights on the MELP
  6. algorithm.  The Texas Instruments contact for licensing issues for
  7. commercial and non-government use is William Gordon, Director,
  8. Government Contracts, Texas Instruments Incorporated, Semiconductor
  9. Group (phone 972 480 7442).
  10. The fixed-point version of the voice codec Mixed Excitation Linear
  11. Prediction (MELP) is based on specifications on the C-language software
  12. simulation contained in GSM 06.06 which is protected by copyright and
  13. is the property of the European Telecommunications Standards Institute
  14. (ETSI). This standard is available from the ETSI publication office
  15. tel. +33 (0)4 92 94 42 58. ETSI has granted a license to United States
  16. Department of Defense to use the C-language software simulation contained
  17. in GSM 06.06 for the purposes of the development of a fixed-point
  18. version of the voice codec Mixed Excitation Linear Prediction (MELP).
  19. Requests for authorization to make other use of the GSM 06.06 or
  20. otherwise distribute or modify them need to be addressed to the ETSI
  21. Secretariat fax: +33 493 65 47 16.
  22. */
  23. /*
  24.    spbstd.h   SPB standard header file.
  25.    Copyright (c) 1995 by Texas Instruments, Inc.  All rights reserved.
  26. */
  27. #ifndef _spbstd_h
  28. #define _spbstd_h
  29. /*
  30. ** Needed include files.
  31. */
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35. #include <math.h>
  36. /* OSTYPE-dependent definitions/macros. */
  37. #ifdef SunOS4
  38. /* some standard C function definitions missing from SunOS4 */
  39. extern int fclose(FILE *stream);
  40. extern int fprintf(FILE *stream, const char *format, ...);
  41. extern size_t fread(void *ptr, size_t size, size_t nobj, FILE *stream);
  42. extern int fseek(FILE *stream, long offset, int origin);
  43. extern size_t fwrite(const void *ptr, size_t size, size_t nobj, FILE *stream);
  44. extern int printf(const char *format, ...);
  45. extern long random(void);
  46. extern int sscanf (char *s, const char *format, ...);
  47. extern void rewind(FILE *stream);
  48. #else
  49. #endif
  50. /*
  51. ** Constant definitions.
  52. */
  53. #ifndef FALSE
  54. #define FALSE           0
  55. #endif
  56. #ifndef M_PI
  57. #define     M_PI    3.14159265358979323846
  58. #endif
  59. #ifndef PI
  60. #define PI              M_PI
  61. #endif
  62. #ifndef TRUE
  63. #define TRUE            1
  64. #endif
  65. #ifndef TWOPI
  66. #define TWOPI 6.28318530717958647692
  67. #endif
  68. /*
  69. ** Macros.
  70. */
  71. #ifndef FREE
  72. #define FREE(v)         if(v)(void)free((void*)(v))
  73. #endif
  74. #ifndef program_abort
  75. #define program_abort(s1,s2,i1,i2) (void)fprintf(stderr,"%s: %s (instance %d, line %d)",s1,s2,i1,i2),exit(1)
  76. #endif
  77. #ifndef SQR
  78. #define SQR(x)          ((x)*(x))
  79. #endif
  80. /* Generic memory allocation/deallocation macros. */
  81. #define MEM_ALLOC(alloc_routine, v, n, type) 
  82.         if(((v) = (type*) alloc_routine((n) * sizeof(type)))!=NULL)
  83.                 ; else program_abort(__FILE__,"MEM_ALLOC",0,__LINE__)
  84. #define MEM_2ALLOC(alloc_routine,v,n,k,type) 
  85.                 if((v=(type**)alloc_routine(sizeof(type*)*(n)))!=NULL
  86.    &&(v[0]=(type*)alloc_routine(sizeof(type)*(n)*(k)))!=NULL)
  87.                      {int u__i; for(u__i=1; u__i < n; u__i++)
  88.                                 v[u__i] = &v[u__i-1][k];
  89.                      }
  90.                 else
  91.                         program_abort(__FILE__,"MEM_2ALLOC",0,__LINE__)
  92. #define MEM_FREE(free_routine, v) 
  93.     free_routine(v)
  94. #define MEM_2FREE(free_routine, v) 
  95.     if (1) { free_routine((v)[0]); free_routine(v); }
  96. /* lint-dependent macros. */
  97. #ifdef lint
  98. #define MALLOC(n)   (malloc((unsigned)(n)),NULL)
  99. #define VA_ARG(v,type) (v,(type)NULL)
  100. #else
  101. #define MALLOC(n)   malloc((unsigned)(n))
  102. #define VA_ARG(v,type) va_arg(v,type)
  103. #endif
  104. #endif /* #ifndef _spbstd_h */