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.

265 lines
8.0KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVUTIL_INTREADWRITE_H
  19. #define AVUTIL_INTREADWRITE_H
  20. #include <stdint.h>
  21. #include "config.h"
  22. #include "bswap.h"
  23. /*
  24. * Arch-specific headers can provide any combination of
  25. * AV_[RW][BLN](16|32|64) macros. Preprocessor symbols must be
  26. * defined, even if these are implemented as inline functions.
  27. */
  28. #if ARCH_ARM
  29. # include "arm/intreadwrite.h"
  30. #endif
  31. /*
  32. * Define AV_[RW]N helper macros to simplify definitions not provided
  33. * by per-arch headers.
  34. */
  35. #if defined(__GNUC__)
  36. struct unaligned_64 { uint64_t l; } __attribute__((packed));
  37. struct unaligned_32 { uint32_t l; } __attribute__((packed));
  38. struct unaligned_16 { uint16_t l; } __attribute__((packed));
  39. # define AV_RN(s, p) (((const struct unaligned_##s *) (p))->l)
  40. # define AV_WN(s, p, v) (((struct unaligned_##s *) (p))->l) = (v)
  41. #elif defined(__DECC)
  42. # define AV_RN(s, p) (*((const __unaligned uint##s##_t*)(p)))
  43. # define AV_WN(s, p, v) *((__unaligned uint##s##_t*)(p)) = (v)
  44. #elif HAVE_FAST_UNALIGNED
  45. # define AV_RN(s, p) (*((const uint##s##_t*)(p)))
  46. # define AV_WN(s, p, v) *((uint##s##_t*)(p)) = (v)
  47. #else
  48. #ifndef AV_RB16
  49. #define AV_RB16(x) ((((const uint8_t*)(x))[0] << 8) | \
  50. ((const uint8_t*)(x))[1])
  51. #endif
  52. #ifndef AV_WB16
  53. #define AV_WB16(p, d) do { \
  54. ((uint8_t*)(p))[1] = (d); \
  55. ((uint8_t*)(p))[0] = (d)>>8; } while(0)
  56. #endif
  57. #ifndef AV_RL16
  58. #define AV_RL16(x) ((((const uint8_t*)(x))[1] << 8) | \
  59. ((const uint8_t*)(x))[0])
  60. #endif
  61. #ifndef AV_WL16
  62. #define AV_WL16(p, d) do { \
  63. ((uint8_t*)(p))[0] = (d); \
  64. ((uint8_t*)(p))[1] = (d)>>8; } while(0)
  65. #endif
  66. #ifndef AV_RB32
  67. #define AV_RB32(x) ((((const uint8_t*)(x))[0] << 24) | \
  68. (((const uint8_t*)(x))[1] << 16) | \
  69. (((const uint8_t*)(x))[2] << 8) | \
  70. ((const uint8_t*)(x))[3])
  71. #endif
  72. #ifndef AV_WB32
  73. #define AV_WB32(p, d) do { \
  74. ((uint8_t*)(p))[3] = (d); \
  75. ((uint8_t*)(p))[2] = (d)>>8; \
  76. ((uint8_t*)(p))[1] = (d)>>16; \
  77. ((uint8_t*)(p))[0] = (d)>>24; } while(0)
  78. #endif
  79. #ifndef AV_RL32
  80. #define AV_RL32(x) ((((const uint8_t*)(x))[3] << 24) | \
  81. (((const uint8_t*)(x))[2] << 16) | \
  82. (((const uint8_t*)(x))[1] << 8) | \
  83. ((const uint8_t*)(x))[0])
  84. #endif
  85. #ifndef AV_WL32
  86. #define AV_WL32(p, d) do { \
  87. ((uint8_t*)(p))[0] = (d); \
  88. ((uint8_t*)(p))[1] = (d)>>8; \
  89. ((uint8_t*)(p))[2] = (d)>>16; \
  90. ((uint8_t*)(p))[3] = (d)>>24; } while(0)
  91. #endif
  92. #ifndef AV_RB64
  93. #define AV_RB64(x) (((uint64_t)((const uint8_t*)(x))[0] << 56) | \
  94. ((uint64_t)((const uint8_t*)(x))[1] << 48) | \
  95. ((uint64_t)((const uint8_t*)(x))[2] << 40) | \
  96. ((uint64_t)((const uint8_t*)(x))[3] << 32) | \
  97. ((uint64_t)((const uint8_t*)(x))[4] << 24) | \
  98. ((uint64_t)((const uint8_t*)(x))[5] << 16) | \
  99. ((uint64_t)((const uint8_t*)(x))[6] << 8) | \
  100. (uint64_t)((const uint8_t*)(x))[7])
  101. #endif
  102. #ifndef AV_WB64
  103. #define AV_WB64(p, d) do { \
  104. ((uint8_t*)(p))[7] = (d); \
  105. ((uint8_t*)(p))[6] = (d)>>8; \
  106. ((uint8_t*)(p))[5] = (d)>>16; \
  107. ((uint8_t*)(p))[4] = (d)>>24; \
  108. ((uint8_t*)(p))[3] = (d)>>32; \
  109. ((uint8_t*)(p))[2] = (d)>>40; \
  110. ((uint8_t*)(p))[1] = (d)>>48; \
  111. ((uint8_t*)(p))[0] = (d)>>56; } while(0)
  112. #endif
  113. #ifndef AV_RL64
  114. #define AV_RL64(x) (((uint64_t)((const uint8_t*)(x))[7] << 56) | \
  115. ((uint64_t)((const uint8_t*)(x))[6] << 48) | \
  116. ((uint64_t)((const uint8_t*)(x))[5] << 40) | \
  117. ((uint64_t)((const uint8_t*)(x))[4] << 32) | \
  118. ((uint64_t)((const uint8_t*)(x))[3] << 24) | \
  119. ((uint64_t)((const uint8_t*)(x))[2] << 16) | \
  120. ((uint64_t)((const uint8_t*)(x))[1] << 8) | \
  121. (uint64_t)((const uint8_t*)(x))[0])
  122. #endif
  123. #ifndef AV_WL64
  124. #define AV_WL64(p, d) do { \
  125. ((uint8_t*)(p))[0] = (d); \
  126. ((uint8_t*)(p))[1] = (d)>>8; \
  127. ((uint8_t*)(p))[2] = (d)>>16; \
  128. ((uint8_t*)(p))[3] = (d)>>24; \
  129. ((uint8_t*)(p))[4] = (d)>>32; \
  130. ((uint8_t*)(p))[5] = (d)>>40; \
  131. ((uint8_t*)(p))[6] = (d)>>48; \
  132. ((uint8_t*)(p))[7] = (d)>>56; } while(0)
  133. #endif
  134. #ifdef WORDS_BIGENDIAN
  135. # define AV_RN(s, p) AV_RB##s(p)
  136. # define AV_WN(s, p, v) AV_WB##s(p, v)
  137. #else
  138. # define AV_RN(s, p) AV_RL##s(p)
  139. # define AV_WN(s, p, v) AV_WL##s(p, v)
  140. #endif
  141. #endif /* HAVE_FAST_UNALIGNED */
  142. #ifndef AV_RN16
  143. # define AV_RN16(p) AV_RN(16, p)
  144. #endif
  145. #ifndef AV_RN32
  146. # define AV_RN32(p) AV_RN(32, p)
  147. #endif
  148. #ifndef AV_RN64
  149. # define AV_RN64(p) AV_RN(64, p)
  150. #endif
  151. #ifndef AV_WN16
  152. # define AV_WN16(p, v) AV_WN(16, p, v)
  153. #endif
  154. #ifndef AV_WN32
  155. # define AV_WN32(p, v) AV_WN(32, p, v)
  156. #endif
  157. #ifndef AV_WN64
  158. # define AV_WN64(p, v) AV_WN(64, p, v)
  159. #endif
  160. #ifdef WORDS_BIGENDIAN
  161. # define AV_RB(s, p) AV_RN(s, p)
  162. # define AV_WB(s, p, v) AV_WN(s, p, v)
  163. # define AV_RL(s, p) bswap_##s(AV_RN(s, p))
  164. # define AV_WL(s, p, v) AV_WN(s, p, bswap_##s(v))
  165. #else
  166. # define AV_RB(s, p) bswap_##s(AV_RN(s, p))
  167. # define AV_WB(s, p, v) AV_WN(s, p, bswap_##s(v))
  168. # define AV_RL(s, p) AV_RN(s, p)
  169. # define AV_WL(s, p, v) AV_WN(s, p, v)
  170. #endif
  171. #define AV_RB8(x) (((const uint8_t*)(x))[0])
  172. #define AV_WB8(p, d) do { ((uint8_t*)(p))[0] = (d); } while(0)
  173. #define AV_RL8(x) AV_RB8(x)
  174. #define AV_WL8(p, d) AV_WB8(p, d)
  175. #ifndef AV_RB16
  176. # define AV_RB16(p) AV_RB(16, p)
  177. #endif
  178. #ifndef AV_WB16
  179. # define AV_WB16(p, v) AV_WB(16, p, v)
  180. #endif
  181. #ifndef AV_RL16
  182. # define AV_RL16(p) AV_RL(16, p)
  183. #endif
  184. #ifndef AV_WL16
  185. # define AV_WL16(p, v) AV_WL(16, p, v)
  186. #endif
  187. #ifndef AV_RB32
  188. # define AV_RB32(p) AV_RB(32, p)
  189. #endif
  190. #ifndef AV_WB32
  191. # define AV_WB32(p, v) AV_WB(32, p, v)
  192. #endif
  193. #ifndef AV_RL32
  194. # define AV_RL32(p) AV_RL(32, p)
  195. #endif
  196. #ifndef AV_WL32
  197. # define AV_WL32(p, v) AV_WL(32, p, v)
  198. #endif
  199. #ifndef AV_RB64
  200. # define AV_RB64(p) AV_RB(64, p)
  201. #endif
  202. #ifndef AV_WB64
  203. # define AV_WB64(p, v) AV_WB(64, p, v)
  204. #endif
  205. #ifndef AV_RL64
  206. # define AV_RL64(p) AV_RL(64, p)
  207. #endif
  208. #ifndef AV_WL64
  209. # define AV_WL64(p, v) AV_WL(64, p, v)
  210. #endif
  211. #define AV_RB24(x) ((((const uint8_t*)(x))[0] << 16) | \
  212. (((const uint8_t*)(x))[1] << 8) | \
  213. ((const uint8_t*)(x))[2])
  214. #define AV_WB24(p, d) do { \
  215. ((uint8_t*)(p))[2] = (d); \
  216. ((uint8_t*)(p))[1] = (d)>>8; \
  217. ((uint8_t*)(p))[0] = (d)>>16; } while(0)
  218. #define AV_RL24(x) ((((const uint8_t*)(x))[2] << 16) | \
  219. (((const uint8_t*)(x))[1] << 8) | \
  220. ((const uint8_t*)(x))[0])
  221. #define AV_WL24(p, d) do { \
  222. ((uint8_t*)(p))[0] = (d); \
  223. ((uint8_t*)(p))[1] = (d)>>8; \
  224. ((uint8_t*)(p))[2] = (d)>>16; } while(0)
  225. #endif /* AVUTIL_INTREADWRITE_H */