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.

183 lines
5.1KB

  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * common internal API header
  23. */
  24. #ifndef AVUTIL_INTERNAL_H
  25. #define AVUTIL_INTERNAL_H
  26. #if !defined(DEBUG) && !defined(NDEBUG)
  27. # define NDEBUG
  28. #endif
  29. #include <limits.h>
  30. #include <stdint.h>
  31. #include <stddef.h>
  32. #include <assert.h>
  33. #include "config.h"
  34. #include "attributes.h"
  35. #include "timer.h"
  36. #include "dict.h"
  37. #ifndef attribute_align_arg
  38. #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
  39. # define attribute_align_arg __attribute__((force_align_arg_pointer))
  40. #else
  41. # define attribute_align_arg
  42. #endif
  43. #endif
  44. #if defined(_MSC_VER) && CONFIG_SHARED
  45. # define av_export __declspec(dllimport)
  46. #else
  47. # define av_export
  48. #endif
  49. #ifndef INT_BIT
  50. # define INT_BIT (CHAR_BIT * sizeof(int))
  51. #endif
  52. /* avoid usage of dangerous/inappropriate system functions */
  53. #undef malloc
  54. #define malloc please_use_av_malloc
  55. #undef free
  56. #define free please_use_av_free
  57. #undef realloc
  58. #define realloc please_use_av_realloc
  59. #undef time
  60. #define time time_is_forbidden_due_to_security_issues
  61. #undef rand
  62. #define rand rand_is_forbidden_due_to_state_trashing_use_av_lfg_get
  63. #undef srand
  64. #define srand srand_is_forbidden_due_to_state_trashing_use_av_lfg_init
  65. #undef random
  66. #define random random_is_forbidden_due_to_state_trashing_use_av_lfg_get
  67. #undef sprintf
  68. #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
  69. #undef strcat
  70. #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
  71. #undef exit
  72. #define exit exit_is_forbidden
  73. #undef printf
  74. #define printf please_use_av_log_instead_of_printf
  75. #undef fprintf
  76. #define fprintf please_use_av_log_instead_of_fprintf
  77. #undef puts
  78. #define puts please_use_av_log_instead_of_puts
  79. #undef perror
  80. #define perror please_use_av_log_instead_of_perror
  81. #undef strcasecmp
  82. #define strcasecmp please_use_av_strcasecmp
  83. #undef strncasecmp
  84. #define strncasecmp please_use_av_strncasecmp
  85. #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
  86. {\
  87. p = av_malloc(size);\
  88. if (p == NULL && (size) != 0) {\
  89. av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
  90. goto label;\
  91. }\
  92. }
  93. #define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
  94. {\
  95. p = av_mallocz(size);\
  96. if (p == NULL && (size) != 0) {\
  97. av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
  98. goto label;\
  99. }\
  100. }
  101. #include "libm.h"
  102. /**
  103. * Return NULL if CONFIG_SMALL is true, otherwise the argument
  104. * without modification. Used to disable the definition of strings
  105. * (for example AVCodec long_names).
  106. */
  107. #if CONFIG_SMALL
  108. # define NULL_IF_CONFIG_SMALL(x) NULL
  109. #else
  110. # define NULL_IF_CONFIG_SMALL(x) x
  111. #endif
  112. /**
  113. * Define a function with only the non-default version specified.
  114. *
  115. * On systems with ELF shared libraries, all symbols exported from
  116. * Libav libraries are tagged with the name and major version of the
  117. * library to which they belong. If a function is moved from one
  118. * library to another, a wrapper must be retained in the original
  119. * location to preserve binary compatibility.
  120. *
  121. * Functions defined with this macro will never be used to resolve
  122. * symbols by the build-time linker.
  123. *
  124. * @param type return type of function
  125. * @param name name of function
  126. * @param args argument list of function
  127. * @param ver version tag to assign function
  128. */
  129. #if HAVE_SYMVER_ASM_LABEL
  130. # define FF_SYMVER(type, name, args, ver) \
  131. type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
  132. type ff_##name args
  133. #elif HAVE_SYMVER_GNU_ASM
  134. # define FF_SYMVER(type, name, args, ver) \
  135. __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
  136. type ff_##name args; \
  137. type ff_##name args
  138. #endif
  139. /**
  140. * Return NULL if a threading library has not been enabled.
  141. * Used to disable threading functions in AVCodec definitions
  142. * when not needed.
  143. */
  144. #if HAVE_THREADS
  145. # define ONLY_IF_THREADS_ENABLED(x) x
  146. #else
  147. # define ONLY_IF_THREADS_ENABLED(x) NULL
  148. #endif
  149. #if HAVE_MMX_INLINE
  150. /**
  151. * Empty mmx state.
  152. * this must be called between any dsp function and float/double code.
  153. * for example sin(); dsp->idct_put(); emms_c(); cos()
  154. */
  155. static av_always_inline void emms_c(void)
  156. {
  157. __asm__ volatile ("emms" ::: "memory");
  158. }
  159. #elif HAVE_MMX && HAVE_MM_EMPTY
  160. # include <mmintrin.h>
  161. # define emms_c _mm_empty
  162. #else
  163. # define emms_c()
  164. #endif /* HAVE_MMX_INLINE */
  165. #endif /* AVUTIL_INTERNAL_H */