SKP_Silk_typedef.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /***********************************************************************
  2. Copyright (c) 2006-2012, Skype Limited. All rights reserved.
  3. Redistribution and use in source and binary forms, with or without
  4. modification, (subject to the limitations in the disclaimer below)
  5. are permitted provided that the following conditions are met:
  6. - Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. - Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. - Neither the name of Skype Limited, nor the names of specific
  12. contributors, may be used to endorse or promote products derived from
  13. this software without specific prior written permission.
  14. NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED
  15. BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  16. CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  17. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  18. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  19. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  21. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  22. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  23. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  25. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. ***********************************************************************/
  27. #ifndef _SKP_SILK_API_TYPDEF_H_
  28. #define _SKP_SILK_API_TYPDEF_H_
  29. #ifndef SKP_USE_DOUBLE_PRECISION_FLOATS
  30. #define SKP_USE_DOUBLE_PRECISION_FLOATS 0
  31. #endif
  32. #include <float.h>
  33. #if defined( __GNUC__ )
  34. #include <stdint.h>
  35. #endif
  36. #define SKP_int int /* used for counters etc; at least 16 bits */
  37. #ifdef __GNUC__
  38. # define SKP_int64 int64_t
  39. #else
  40. # define SKP_int64 long long
  41. #endif
  42. #define SKP_int32 int
  43. #define SKP_int16 short
  44. #define SKP_int8 signed char
  45. #define SKP_uint unsigned int /* used for counters etc; at least 16 bits */
  46. #ifdef __GNUC__
  47. # define SKP_uint64 uint64_t
  48. #else
  49. # define SKP_uint64 unsigned long long
  50. #endif
  51. #define SKP_uint32 unsigned int
  52. #define SKP_uint16 unsigned short
  53. #define SKP_uint8 unsigned char
  54. #define SKP_int_ptr_size intptr_t
  55. #if SKP_USE_DOUBLE_PRECISION_FLOATS
  56. # define SKP_float double
  57. # define SKP_float_MAX DBL_MAX
  58. #else
  59. # define SKP_float float
  60. # define SKP_float_MAX FLT_MAX
  61. #endif
  62. #define SKP_INLINE static __inline
  63. #ifdef _WIN32
  64. # define SKP_STR_CASEINSENSITIVE_COMPARE(x, y) _stricmp(x, y)
  65. #else
  66. # define SKP_STR_CASEINSENSITIVE_COMPARE(x, y) strcasecmp(x, y)
  67. #endif
  68. #define SKP_int64_MAX ((SKP_int64)0x7FFFFFFFFFFFFFFFLL) /* 2^63 - 1 */
  69. #define SKP_int64_MIN ((SKP_int64)0x8000000000000000LL) /* -2^63 */
  70. #define SKP_int32_MAX 0x7FFFFFFF /* 2^31 - 1 = 2147483647*/
  71. #define SKP_int32_MIN ((SKP_int32)0x80000000) /* -2^31 = -2147483648*/
  72. #define SKP_int16_MAX 0x7FFF /* 2^15 - 1 = 32767*/
  73. #define SKP_int16_MIN ((SKP_int16)0x8000) /* -2^15 = -32768*/
  74. #define SKP_int8_MAX 0x7F /* 2^7 - 1 = 127*/
  75. #define SKP_int8_MIN ((SKP_int8)0x80) /* -2^7 = -128*/
  76. #define SKP_uint32_MAX 0xFFFFFFFF /* 2^32 - 1 = 4294967295 */
  77. #define SKP_uint32_MIN 0x00000000
  78. #define SKP_uint16_MAX 0xFFFF /* 2^16 - 1 = 65535 */
  79. #define SKP_uint16_MIN 0x0000
  80. #define SKP_uint8_MAX 0xFF /* 2^8 - 1 = 255 */
  81. #define SKP_uint8_MIN 0x00
  82. #define SKP_TRUE 1
  83. #define SKP_FALSE 0
  84. /* assertions */
  85. #if (defined _WIN32 && !defined _WINCE && !defined(__GNUC__) && !defined(NO_ASSERTS))
  86. # ifndef SKP_assert
  87. # include <crtdbg.h> /* ASSERTE() */
  88. # define SKP_assert(COND) _ASSERTE(COND)
  89. # endif
  90. #else
  91. # define SKP_assert(COND)
  92. #endif
  93. #endif