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.

100 lines
3.5KB

  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_RB16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1])
  40. #define AV_WB16(p, d) { \
  41. ((uint8_t*)(p))[1] = (d); \
  42. ((uint8_t*)(p))[0] = (d)>>8; }
  43. #define AV_RB24(x) ((((uint8_t*)(x))[0] << 16) | \
  44. (((uint8_t*)(x))[1] << 8) | \
  45. ((uint8_t*)(x))[2])
  46. #define AV_WB24(p, d) { \
  47. ((uint8_t*)(p))[2] = (d); \
  48. ((uint8_t*)(p))[1] = (d)>>8; \
  49. ((uint8_t*)(p))[0] = (d)>>16; }
  50. #define AV_RB32(x) ((((uint8_t*)(x))[0] << 24) | \
  51. (((uint8_t*)(x))[1] << 16) | \
  52. (((uint8_t*)(x))[2] << 8) | \
  53. ((uint8_t*)(x))[3])
  54. #define AV_WB32(p, d) { \
  55. ((uint8_t*)(p))[3] = (d); \
  56. ((uint8_t*)(p))[2] = (d)>>8; \
  57. ((uint8_t*)(p))[1] = (d)>>16; \
  58. ((uint8_t*)(p))[0] = (d)>>24; }
  59. #define AV_RL8(x) AV_RB8(x)
  60. #define AV_WL8(p, d) AV_WB8(p, d)
  61. #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0])
  62. #define AV_WL16(p, d) { \
  63. ((uint8_t*)(p))[0] = (d); \
  64. ((uint8_t*)(p))[1] = (d)>>8; }
  65. #define AV_RL24(x) ((((uint8_t*)(x))[2] << 16) | \
  66. (((uint8_t*)(x))[1] << 8) | \
  67. ((uint8_t*)(x))[0])
  68. #define AV_WL24(p, d) { \
  69. ((uint8_t*)(p))[0] = (d); \
  70. ((uint8_t*)(p))[1] = (d)>>8; \
  71. ((uint8_t*)(p))[2] = (d)>>16; }
  72. #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \
  73. (((uint8_t*)(x))[2] << 16) | \
  74. (((uint8_t*)(x))[1] << 8) | \
  75. ((uint8_t*)(x))[0])
  76. #define AV_WL32(p, d) { \
  77. ((uint8_t*)(p))[0] = (d); \
  78. ((uint8_t*)(p))[1] = (d)>>8; \
  79. ((uint8_t*)(p))[2] = (d)>>16; \
  80. ((uint8_t*)(p))[3] = (d)>>24; }
  81. #endif /* INTREADWRITE_H */