bswap.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file libavutil/bswap.h
  22. * byte swapping routines
  23. */
  24. #ifndef AVUTIL_BSWAP_H
  25. #define AVUTIL_BSWAP_H
  26. #include <stdint.h>
  27. #include "config.h"
  28. #include "common.h"
  29. #if ARCH_ARM
  30. # include "arm/bswap.h"
  31. #elif ARCH_BFIN
  32. # include "bfin/bswap.h"
  33. #elif ARCH_SH4
  34. # include "sh4/bswap.h"
  35. #elif ARCH_X86
  36. # include "x86/bswap.h"
  37. #endif
  38. #ifndef bswap_16
  39. static av_always_inline av_const uint16_t bswap_16(uint16_t x)
  40. {
  41. x= (x>>8) | (x<<8);
  42. return x;
  43. }
  44. #endif
  45. #ifndef bswap_32
  46. static av_always_inline av_const uint32_t bswap_32(uint32_t x)
  47. {
  48. x= ((x<<8)&0xFF00FF00) | ((x>>8)&0x00FF00FF);
  49. x= (x>>16) | (x<<16);
  50. return x;
  51. }
  52. #endif
  53. #ifndef bswap_64
  54. static inline uint64_t av_const bswap_64(uint64_t x)
  55. {
  56. #if 0
  57. x= ((x<< 8)&0xFF00FF00FF00FF00ULL) | ((x>> 8)&0x00FF00FF00FF00FFULL);
  58. x= ((x<<16)&0xFFFF0000FFFF0000ULL) | ((x>>16)&0x0000FFFF0000FFFFULL);
  59. return (x>>32) | (x<<32);
  60. #else
  61. union {
  62. uint64_t ll;
  63. uint32_t l[2];
  64. } w, r;
  65. w.ll = x;
  66. r.l[0] = bswap_32 (w.l[1]);
  67. r.l[1] = bswap_32 (w.l[0]);
  68. return r.ll;
  69. #endif
  70. }
  71. #endif
  72. // be2me ... big-endian to machine-endian
  73. // le2me ... little-endian to machine-endian
  74. #ifdef WORDS_BIGENDIAN
  75. #define be2me_16(x) (x)
  76. #define be2me_32(x) (x)
  77. #define be2me_64(x) (x)
  78. #define le2me_16(x) bswap_16(x)
  79. #define le2me_32(x) bswap_32(x)
  80. #define le2me_64(x) bswap_64(x)
  81. #else
  82. #define be2me_16(x) bswap_16(x)
  83. #define be2me_32(x) bswap_32(x)
  84. #define be2me_64(x) bswap_64(x)
  85. #define le2me_16(x) (x)
  86. #define le2me_32(x) (x)
  87. #define le2me_64(x) (x)
  88. #endif
  89. #endif /* AVUTIL_BSWAP_H */