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.

84 lines
2.9KB

  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_RB32(x) ((((uint8_t*)(x))[0] << 24) | \
  44. (((uint8_t*)(x))[1] << 16) | \
  45. (((uint8_t*)(x))[2] << 8) | \
  46. ((uint8_t*)(x))[3])
  47. #define AV_WB32(p, d) { \
  48. ((uint8_t*)(p))[3] = (d); \
  49. ((uint8_t*)(p))[2] = (d)>>8; \
  50. ((uint8_t*)(p))[1] = (d)>>16; \
  51. ((uint8_t*)(p))[0] = (d)>>24; }
  52. #define AV_RL8(x) AV_RB8(x)
  53. #define AV_WL8(p, d) AV_WB8(p, d)
  54. #define AV_RL16(x) ((((uint8_t*)(x))[1] << 8) | ((uint8_t*)(x))[0])
  55. #define AV_WL16(p, d) { \
  56. ((uint8_t*)(p))[0] = (d); \
  57. ((uint8_t*)(p))[1] = (d)>>8; }
  58. #define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \
  59. (((uint8_t*)(x))[2] << 16) | \
  60. (((uint8_t*)(x))[1] << 8) | \
  61. ((uint8_t*)(x))[0])
  62. #define AV_WL32(p, d) { \
  63. ((uint8_t*)(p))[0] = (d); \
  64. ((uint8_t*)(p))[1] = (d)>>8; \
  65. ((uint8_t*)(p))[2] = (d)>>16; \
  66. ((uint8_t*)(p))[3] = (d)>>24; }
  67. #endif /* INTREADWRITE_H */