intreadwrite.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 FFMPEG_INTREADWRITE_H
  19. #define FFMPEG_INTREADWRITE_H
  20. #include <stdint.h>
  21. #include "bswap.h"
  22. #ifdef __GNUC__
  23. struct unaligned_64 { uint64_t l; } __attribute__((packed));
  24. struct unaligned_32 { uint32_t l; } __attribute__((packed));
  25. struct unaligned_16 { uint16_t l; } __attribute__((packed));
  26. #define AV_RN16(a) (((const struct unaligned_16 *) (a))->l)
  27. #define AV_RN32(a) (((const struct unaligned_32 *) (a))->l)
  28. #define AV_RN64(a) (((const struct unaligned_64 *) (a))->l)
  29. #define AV_WN16(a, b) (((struct unaligned_16 *) (a))->l) = (b)
  30. #define AV_WN32(a, b) (((struct unaligned_32 *) (a))->l) = (b)
  31. #define AV_WN64(a, b) (((struct unaligned_64 *) (a))->l) = (b)
  32. #else /* __GNUC__ */
  33. #define AV_RN16(a) (*((uint16_t*)(a)))
  34. #define AV_RN32(a) (*((uint32_t*)(a)))
  35. #define AV_RN64(a) (*((uint64_t*)(a)))
  36. #define AV_WN16(a, b) *((uint16_t*)(a)) = (b)
  37. #define AV_WN32(a, b) *((uint32_t*)(a)) = (b)
  38. #define AV_WN64(a, b) *((uint64_t*)(a)) = (b)
  39. #endif /* !__GNUC__ */
  40. /* endian macros */
  41. #define AV_RB8(x) (((uint8_t*)(x))[0])
  42. #define AV_WB8(p, d) do { ((uint8_t*)(p))[0] = (d); } while(0)
  43. #define AV_RL8(x) AV_RB8(x)
  44. #define AV_WL8(p, d) AV_WB8(p, d)
  45. #ifdef HAVE_FAST_UNALIGNED
  46. # ifdef WORDS_BIGENDIAN
  47. # define AV_RB16(x) AV_RN16(x)
  48. # define AV_WB16(p, d) AV_WN16(p, d)
  49. # define AV_RL16(x) bswap_16(AV_RN16(x))
  50. # define AV_WL16(p, d) AV_WN16(p, bswap_16(d))
  51. # else /* WORDS_BIGENDIAN */
  52. # define AV_RB16(x) bswap_16(AV_RN16(x))
  53. # define AV_WB16(p, d) AV_WN16(p, bswap_16(d))
  54. # define AV_RL16(x) AV_RN16(x)
  55. # define AV_WL16(p, d) AV_WN16(p, d)
  56. # endif
  57. #else /* HAVE_FAST_UNALIGNED */
  58. #define AV_RB16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
  59. #define AV_WB16(p, d) do { \
  60. ((uint8_t*)(p))[1] = (d); \
  61. ((uint8_t*)(p))[0] = (d)>>8; } while(0)
  62. #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | \
  63. ((uint8_t*)(x))[0])
  64. #define AV_WL16(p, d) do { \
  65. ((uint8_t*)(p))[0] = (d); \
  66. ((uint8_t*)(p))[1] = (d)>>8; } while(0)
  67. #endif
  68. #define AV_RB24(x) ((((uint8_t*)(x))[0] << 16) | \
  69. (((uint8_t*)(x))[1] << 8) | \
  70. ((uint8_t*)(x))[2])
  71. #define AV_WB24(p, d) do { \
  72. ((uint8_t*)(p))[2] = (d); \
  73. ((uint8_t*)(p))[1] = (d)>>8; \
  74. ((uint8_t*)(p))[0] = (d)>>16; } while(0)
  75. #define AV_RL24(x) ((((uint8_t*)(x))[2] << 16) | \
  76. (((uint8_t*)(x))[1] << 8) | \
  77. ((uint8_t*)(x))[0])
  78. #define AV_WL24(p, d) do { \
  79. ((uint8_t*)(p))[0] = (d); \
  80. ((uint8_t*)(p))[1] = (d)>>8; \
  81. ((uint8_t*)(p))[2] = (d)>>16; } while(0)
  82. #ifdef HAVE_FAST_UNALIGNED
  83. # ifdef WORDS_BIGENDIAN
  84. # define AV_RB32(x) AV_RN32(x)
  85. # define AV_WB32(p, d) AV_WN32(p, d)
  86. # define AV_RL32(x) bswap_32(AV_RN32(x))
  87. # define AV_WL32(p, d) AV_WN32(p, bswap_32(d))
  88. # else /* WORDS_BIGENDIAN */
  89. # define AV_RB32(x) bswap_32(AV_RN32(x))
  90. # define AV_WB32(p, d) AV_WN32(p, bswap_32(d))
  91. # define AV_RL32(x) AV_RN32(x)
  92. # define AV_WL32(p, d) AV_WN32(p, d)
  93. # endif
  94. #else /* HAVE_FAST_UNALIGNED */
  95. #define AV_RB32(x) ((((uint8_t*)(x))[0] << 24) | \
  96. (((uint8_t*)(x))[1] << 16) | \
  97. (((uint8_t*)(x))[2] << 8) | \
  98. ((uint8_t*)(x))[3])
  99. #define AV_WB32(p, d) do { \
  100. ((uint8_t*)(p))[3] = (d); \
  101. ((uint8_t*)(p))[2] = (d)>>8; \
  102. ((uint8_t*)(p))[1] = (d)>>16; \
  103. ((uint8_t*)(p))[0] = (d)>>24; } while(0)
  104. #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \
  105. (((uint8_t*)(x))[2] << 16) | \
  106. (((uint8_t*)(x))[1] << 8) | \
  107. ((uint8_t*)(x))[0])
  108. #define AV_WL32(p, d) do { \
  109. ((uint8_t*)(p))[0] = (d); \
  110. ((uint8_t*)(p))[1] = (d)>>8; \
  111. ((uint8_t*)(p))[2] = (d)>>16; \
  112. ((uint8_t*)(p))[3] = (d)>>24; } while(0)
  113. #endif
  114. #ifdef HAVE_FAST_UNALIGNED
  115. # ifdef WORDS_BIGENDIAN
  116. # define AV_RB64(x) AV_RN64(x)
  117. # define AV_WB64(p, d) AV_WN64(p, d)
  118. # define AV_RL64(x) bswap_64(AV_RN64(x))
  119. # define AV_WL64(p, d) AV_WN64(p, bswap_64(d))
  120. # else /* WORDS_BIGENDIAN */
  121. # define AV_RB64(x) bswap_64(AV_RN64(x))
  122. # define AV_WB64(p, d) AV_WN64(p, bswap_64(d))
  123. # define AV_RL64(x) AV_RN64(x)
  124. # define AV_WL64(p, d) AV_WN64(p, d)
  125. # endif
  126. #else /* HAVE_FAST_UNALIGNED */
  127. #define AV_RB64(x) (((uint64_t)((uint8_t*)(x))[0] << 56) | \
  128. ((uint64_t)((uint8_t*)(x))[1] << 48) | \
  129. ((uint64_t)((uint8_t*)(x))[2] << 40) | \
  130. ((uint64_t)((uint8_t*)(x))[3] << 32) | \
  131. ((uint64_t)((uint8_t*)(x))[4] << 24) | \
  132. ((uint64_t)((uint8_t*)(x))[5] << 16) | \
  133. ((uint64_t)((uint8_t*)(x))[6] << 8) | \
  134. (uint64_t)((uint8_t*)(x))[7])
  135. #define AV_WB64(p, d) do { \
  136. ((uint8_t*)(p))[7] = (d); \
  137. ((uint8_t*)(p))[6] = (d)>>8; \
  138. ((uint8_t*)(p))[5] = (d)>>16; \
  139. ((uint8_t*)(p))[4] = (d)>>24; \
  140. ((uint8_t*)(p))[3] = (d)>>32; \
  141. ((uint8_t*)(p))[2] = (d)>>40; \
  142. ((uint8_t*)(p))[1] = (d)>>48; \
  143. ((uint8_t*)(p))[0] = (d)>>56; } while(0)
  144. #define AV_RL64(x) (((uint64_t)((uint8_t*)(x))[7] << 56) | \
  145. ((uint64_t)((uint8_t*)(x))[6] << 48) | \
  146. ((uint64_t)((uint8_t*)(x))[5] << 40) | \
  147. ((uint64_t)((uint8_t*)(x))[4] << 32) | \
  148. ((uint64_t)((uint8_t*)(x))[3] << 24) | \
  149. ((uint64_t)((uint8_t*)(x))[2] << 16) | \
  150. ((uint64_t)((uint8_t*)(x))[1] << 8) | \
  151. (uint64_t)((uint8_t*)(x))[0])
  152. #define AV_WL64(p, d) do { \
  153. ((uint8_t*)(p))[0] = (d); \
  154. ((uint8_t*)(p))[1] = (d)>>8; \
  155. ((uint8_t*)(p))[2] = (d)>>16; \
  156. ((uint8_t*)(p))[3] = (d)>>24; \
  157. ((uint8_t*)(p))[4] = (d)>>32; \
  158. ((uint8_t*)(p))[5] = (d)>>40; \
  159. ((uint8_t*)(p))[6] = (d)>>48; \
  160. ((uint8_t*)(p))[7] = (d)>>56; } while(0)
  161. #endif
  162. #endif /* FFMPEG_INTREADWRITE_H */