The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

178 lines
5.3KB

  1. /* libFLAC - Free Lossless Audio Codec library
  2. * Copyright (C) 2012-2016 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 preferred 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 _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
  40. #define FLAC__off_t __int64 /* use this instead of off_t to fix the 2 GB limit */
  41. #if !defined __MINGW32__
  42. #define fseeko _fseeki64
  43. #define ftello _ftelli64
  44. #else /* MinGW */
  45. #if !defined(HAVE_FSEEKO)
  46. #define fseeko fseeko64
  47. #define ftello ftello64
  48. #endif
  49. #endif
  50. #else
  51. #define FLAC__off_t off_t
  52. #endif
  53. #if defined(_MSC_VER)
  54. #define strtoll _strtoi64
  55. #define strtoull _strtoui64
  56. #endif
  57. #if defined(_MSC_VER) && !defined(__cplusplus)
  58. #define inline __inline
  59. #endif
  60. #if defined __INTEL_COMPILER || (defined _MSC_VER && defined _WIN64)
  61. /* MSVS generates VERY slow 32-bit code with __restrict */
  62. #define flac_restrict __restrict
  63. #elif defined __GNUC__
  64. #define flac_restrict __restrict__
  65. #else
  66. #define flac_restrict
  67. #endif
  68. #define FLAC__U64L(x) x##ULL
  69. #if defined _MSC_VER || defined __MINGW32__
  70. #define FLAC__STRCASECMP _stricmp
  71. #define FLAC__STRNCASECMP _strnicmp
  72. #elif defined __BORLANDC__
  73. #define FLAC__STRCASECMP stricmp
  74. #define FLAC__STRNCASECMP strnicmp
  75. #else
  76. #define FLAC__STRCASECMP strcasecmp
  77. #define FLAC__STRNCASECMP strncasecmp
  78. #endif
  79. #if defined _MSC_VER
  80. # if _MSC_VER >= 1800
  81. # include <inttypes.h>
  82. # elif _MSC_VER >= 1600
  83. /* Visual Studio 2010 has decent C99 support */
  84. # define PRIu64 "llu"
  85. # define PRId64 "lld"
  86. # define PRIx64 "llx"
  87. # else
  88. # ifndef UINT32_MAX
  89. # define UINT32_MAX _UI32_MAX
  90. # endif
  91. # define PRIu64 "I64u"
  92. # define PRId64 "I64d"
  93. # define PRIx64 "I64x"
  94. # endif
  95. #endif /* defined _MSC_VER */
  96. #ifdef _WIN32
  97. /* All char* strings are in UTF-8 format. Added to support Unicode files on Windows */
  98. #if 0
  99. #include "win_utf8_io.h"
  100. #define flac_printf printf_utf8
  101. #define flac_fprintf fprintf_utf8
  102. #define flac_vfprintf vfprintf_utf8
  103. #include "windows_unicode_filenames.h"
  104. #define flac_fopen flac_internal_fopen_utf8
  105. #define flac_chmod flac_internal_chmod_utf8
  106. #define flac_utime flac_internal_utime_utf8
  107. #define flac_unlink flac_internal_unlink_utf8
  108. #define flac_rename flac_internal_rename_utf8
  109. #define flac_stat flac_internal_stat64_utf8
  110. #endif
  111. #else
  112. #define flac_printf printf
  113. #define flac_fprintf fprintf
  114. #define flac_vfprintf vfprintf
  115. #define flac_fopen fopen
  116. #define flac_chmod chmod
  117. #define flac_unlink unlink
  118. #define flac_rename rename
  119. #define flac_stat stat
  120. #if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200809L)
  121. #define flac_utime(a, b) utimensat (AT_FDCWD, a, *b, 0)
  122. #else
  123. #define flac_utime utime
  124. #endif
  125. #endif
  126. #ifdef _WIN32
  127. #define flac_stat_s __stat64 /* stat struct */
  128. #define flac_fstat _fstat64
  129. #else
  130. #define flac_stat_s stat /* stat struct */
  131. #define flac_fstat fstat
  132. #endif
  133. #ifdef ANDROID
  134. #include <limits.h>
  135. #endif
  136. #ifndef M_LN2
  137. #define M_LN2 0.69314718055994530942
  138. #endif
  139. #ifndef M_PI
  140. #define M_PI 3.14159265358979323846
  141. #endif
  142. /* FLAC needs to compile and work correctly on systems with a normal ISO C99
  143. * snprintf as well as Microsoft Visual Studio which has an non-standards
  144. * conformant snprint_s function.
  145. *
  146. * This function wraps the MS version to behave more like the ISO version.
  147. */
  148. #ifdef __cplusplus
  149. extern "C" {
  150. #endif
  151. int flac_snprintf(char *str, size_t size, const char *fmt, ...);
  152. int flac_vsnprintf(char *str, size_t size, const char *fmt, va_list va);
  153. #ifdef __cplusplus
  154. }
  155. #endif
  156. #endif /* FLAC__SHARE__COMPAT_H */