Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

201 lines
5.9KB

  1. /* libFLAC - Free Lossless Audio Codec library
  2. * Copyright (C) 2012-2014 Xiph.org Foundation
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * - Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. *
  11. * - Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * - Neither the name of the Xiph.org Foundation nor the names of its
  16. * contributors may be used to endorse or promote products derived from
  17. * this software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
  23. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. /* This is the prefered location of all CPP hackery to make $random_compiler
  32. * work like something approaching a C99 (or maybe more accurately GNU99)
  33. * compiler.
  34. *
  35. * It is assumed that this header will be included after "config.h".
  36. */
  37. #ifndef FLAC__SHARE__COMPAT_H
  38. #define FLAC__SHARE__COMPAT_H
  39. #if defined _WIN32 && !defined __CYGWIN__
  40. /* where MSVC puts unlink() */
  41. # include <io.h>
  42. #else
  43. # include <unistd.h>
  44. #endif
  45. #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
  46. #include <sys/types.h> /* for off_t */
  47. #define FLAC__off_t __int64 /* use this instead of off_t to fix the 2 GB limit */
  48. #if !defined __MINGW32__
  49. #define fseeko _fseeki64
  50. #define ftello _ftelli64
  51. #else /* MinGW */
  52. #if !defined(HAVE_FSEEKO)
  53. #define fseeko fseeko64
  54. #define ftello ftello64
  55. #endif
  56. #endif
  57. #else
  58. #define FLAC__off_t off_t
  59. #endif
  60. #if HAVE_INTTYPES_H
  61. #define __STDC_FORMAT_MACROS
  62. #include <inttypes.h>
  63. #endif
  64. #if defined(_MSC_VER)
  65. #define strtoll _strtoi64
  66. #define strtoull _strtoui64
  67. #endif
  68. #if defined(_MSC_VER)
  69. #define inline __inline
  70. #endif
  71. #if defined __INTEL_COMPILER || (defined _MSC_VER && defined _WIN64)
  72. /* MSVS generates VERY slow 32-bit code with __restrict */
  73. #define flac_restrict __restrict
  74. #elif defined __GNUC__
  75. #define flac_restrict __restrict__
  76. #else
  77. #define flac_restrict
  78. #endif
  79. #define FLAC__U64L(x) x##ULL
  80. #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
  81. #define FLAC__STRCASECMP stricmp
  82. #define FLAC__STRNCASECMP strnicmp
  83. #else
  84. #define FLAC__STRCASECMP strcasecmp
  85. #define FLAC__STRNCASECMP strncasecmp
  86. #endif
  87. #if defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ || defined __EMX__
  88. #include <io.h> /* for _setmode(), chmod() */
  89. #include <fcntl.h> /* for _O_BINARY */
  90. #else
  91. #include <unistd.h> /* for chown(), unlink() */
  92. #endif
  93. #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
  94. #if defined __BORLANDC__
  95. #include <utime.h> /* for utime() */
  96. #else
  97. #include <sys/utime.h> /* for utime() */
  98. #endif
  99. #else
  100. #include <sys/types.h> /* some flavors of BSD (like OS X) require this to get time_t */
  101. #include <utime.h> /* for utime() */
  102. #endif
  103. #if defined _MSC_VER
  104. # if _MSC_VER >= 1600
  105. /* Visual Studio 2010 has decent C99 support */
  106. # include <stdint.h>
  107. # define PRIu64 "llu"
  108. # define PRId64 "lld"
  109. # define PRIx64 "llx"
  110. # else
  111. # include <limits.h>
  112. # ifndef UINT32_MAX
  113. # define UINT32_MAX _UI32_MAX
  114. # endif
  115. typedef unsigned __int64 uint64_t;
  116. typedef unsigned __int32 uint32_t;
  117. typedef unsigned __int16 uint16_t;
  118. typedef unsigned __int8 uint8_t;
  119. typedef __int64 int64_t;
  120. typedef __int32 int32_t;
  121. typedef __int16 int16_t;
  122. typedef __int8 int8_t;
  123. # define PRIu64 "I64u"
  124. # define PRId64 "I64d"
  125. # define PRIx64 "I64x"
  126. # endif
  127. #endif /* defined _MSC_VER */
  128. #ifdef _WIN32
  129. /* All char* strings are in UTF-8 format. Added to support Unicode files on Windows */
  130. #include "win_utf8_io.h"
  131. #define flac_printf printf_utf8
  132. #define flac_fprintf fprintf_utf8
  133. #define flac_vfprintf vfprintf_utf8
  134. #define flac_fopen fopen_utf8
  135. #define flac_chmod chmod_utf8
  136. #define flac_utime utime_utf8
  137. #define flac_unlink unlink_utf8
  138. #define flac_rename rename_utf8
  139. #define flac_stat _stat64_utf8
  140. #else
  141. #define flac_printf printf
  142. #define flac_fprintf fprintf
  143. #define flac_vfprintf vfprintf
  144. #define flac_fopen fopen
  145. #define flac_chmod chmod
  146. #define flac_utime utime
  147. #define flac_unlink unlink
  148. #define flac_rename rename
  149. #define flac_stat stat
  150. #endif
  151. #ifdef _WIN32
  152. #define flac_stat_s __stat64 /* stat struct */
  153. #define flac_fstat _fstat64
  154. #else
  155. #define flac_stat_s stat /* stat struct */
  156. #define flac_fstat fstat
  157. #endif
  158. #ifndef M_LN2
  159. #define M_LN2 0.69314718055994530942
  160. #endif
  161. #ifndef M_PI
  162. #define M_PI 3.14159265358979323846
  163. #endif
  164. /* FLAC needs to compile and work correctly on systems with a normal ISO C99
  165. * snprintf as well as Microsoft Visual Studio which has an non-standards
  166. * conformant snprint_s function.
  167. *
  168. * This function wraps the MS version to behave more like the the ISO version.
  169. */
  170. #ifdef __cplusplus
  171. extern "C" {
  172. #endif
  173. int flac_snprintf(char *str, size_t size, const char *fmt, ...);
  174. int flac_vsnprintf(char *str, size_t size, const char *fmt, va_list va);
  175. #ifdef __cplusplus
  176. };
  177. #endif
  178. #endif /* FLAC__SHARE__COMPAT_H */