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.

133 lines
4.4KB

  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 INTREADWRITE_H
  19. #define INTREADWRITE_H
  20. #ifdef __GNUC__
  21. struct unaligned_64 { uint64_t l; } __attribute__((packed));
  22. struct unaligned_32 { uint32_t l; } __attribute__((packed));
  23. struct unaligned_16 { uint16_t l; } __attribute__((packed));
  24. #define LD16(a) (((const struct unaligned_16 *) (a))->l)
  25. #define LD32(a) (((const struct unaligned_32 *) (a))->l)
  26. #define LD64(a) (((const struct unaligned_64 *) (a))->l)
  27. #define ST16(a, b) (((struct unaligned_16 *) (a))->l) = (b)
  28. #define ST32(a, b) (((struct unaligned_32 *) (a))->l) = (b)
  29. #else /* __GNUC__ */
  30. #define LD16(a) (*((uint16_t*)(a)))
  31. #define LD32(a) (*((uint32_t*)(a)))
  32. #define LD64(a) (*((uint64_t*)(a)))
  33. #define ST16(a, b) *((uint16_t*)(a)) = (b)
  34. #define ST32(a, b) *((uint32_t*)(a)) = (b)
  35. #endif /* !__GNUC__ */
  36. /* endian macros */
  37. #define AV_RB8(x) (((uint8_t*)(x))[0])
  38. #define AV_WB8(p, d) { ((uint8_t*)(p))[0] = (d); }
  39. #define AV_RL8(x) AV_RB8(x)
  40. #define AV_WL8(p, d) AV_WB8(p, d)
  41. #ifdef HAVE_FAST_UNALIGNED
  42. # ifdef WORDS_BIGENDIAN
  43. # define AV_RB16(x) LD16(x)
  44. # define AV_WB16(p, d) ST16(p, d)
  45. # define AV_RL16(x) bswap_16(LD16(x))
  46. # define AV_WL16(p, d) ST16(p, bswap_16(d))
  47. # else /* WORDS_BIGENDIAN */
  48. # define AV_RB16(x) bswap_16(LD16(x))
  49. # define AV_WB16(p, d) ST16(p, bswap_16(d))
  50. # define AV_RL16(x) LD16(x)
  51. # define AV_WL16(p, d) ST16(p, d)
  52. # endif
  53. #else /* HAVE_FAST_UNALIGNED */
  54. #define AV_RB16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
  55. #define AV_WB16(p, d) { \
  56. ((uint8_t*)(p))[1] = (d); \
  57. ((uint8_t*)(p))[0] = (d)>>8; }
  58. #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | \
  59. ((uint8_t*)(x))[0])
  60. #define AV_WL16(p, d) { \
  61. ((uint8_t*)(p))[0] = (d); \
  62. ((uint8_t*)(p))[1] = (d)>>8; }
  63. #endif
  64. #define AV_RB24(x) ((((uint8_t*)(x))[0] << 16) | \
  65. (((uint8_t*)(x))[1] << 8) | \
  66. ((uint8_t*)(x))[2])
  67. #define AV_WB24(p, d) { \
  68. ((uint8_t*)(p))[2] = (d); \
  69. ((uint8_t*)(p))[1] = (d)>>8; \
  70. ((uint8_t*)(p))[0] = (d)>>16; }
  71. #define AV_RL24(x) ((((uint8_t*)(x))[2] << 16) | \
  72. (((uint8_t*)(x))[1] << 8) | \
  73. ((uint8_t*)(x))[0])
  74. #define AV_WL24(p, d) { \
  75. ((uint8_t*)(p))[0] = (d); \
  76. ((uint8_t*)(p))[1] = (d)>>8; \
  77. ((uint8_t*)(p))[2] = (d)>>16; }
  78. #ifdef HAVE_FAST_UNALIGNED
  79. # ifdef WORDS_BIGENDIAN
  80. # define AV_RB32(x) LD32(x)
  81. # define AV_WB32(p, d) ST32(p, d)
  82. # define AV_RL32(x) bswap_32(LD32(x))
  83. # define AV_WL32(p, d) ST32(p, bswap_32(d))
  84. # else /* WORDS_BIGENDIAN */
  85. # define AV_RB32(x) bswap_32(LD32(x))
  86. # define AV_WB32(p, d) ST32(p, bswap_32(d))
  87. # define AV_RL32(x) LD32(x)
  88. # define AV_WL32(p, d) ST32(p, d)
  89. # endif
  90. #else /* HAVE_FAST_UNALIGNED */
  91. #define AV_RB32(x) ((((uint8_t*)(x))[0] << 24) | \
  92. (((uint8_t*)(x))[1] << 16) | \
  93. (((uint8_t*)(x))[2] << 8) | \
  94. ((uint8_t*)(x))[3])
  95. #define AV_WB32(p, d) { \
  96. ((uint8_t*)(p))[3] = (d); \
  97. ((uint8_t*)(p))[2] = (d)>>8; \
  98. ((uint8_t*)(p))[1] = (d)>>16; \
  99. ((uint8_t*)(p))[0] = (d)>>24; }
  100. #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \
  101. (((uint8_t*)(x))[2] << 16) | \
  102. (((uint8_t*)(x))[1] << 8) | \
  103. ((uint8_t*)(x))[0])
  104. #define AV_WL32(p, d) { \
  105. ((uint8_t*)(p))[0] = (d); \
  106. ((uint8_t*)(p))[1] = (d)>>8; \
  107. ((uint8_t*)(p))[2] = (d)>>16; \
  108. ((uint8_t*)(p))[3] = (d)>>24; }
  109. #endif
  110. #endif /* INTREADWRITE_H */