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.

142 lines
3.3KB

  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 bswap.h
  22. * byte swap.
  23. */
  24. #ifndef BSWAP_H
  25. #define BSWAP_H
  26. #include <stdint.h>
  27. #include "common.h"
  28. #ifdef HAVE_BYTESWAP_H
  29. #include <byteswap.h>
  30. #else
  31. #ifdef ARCH_X86_64
  32. # define LEGACY_REGS "=Q"
  33. #else
  34. # define LEGACY_REGS "=q"
  35. #endif
  36. static av_always_inline uint16_t bswap_16(uint16_t x)
  37. {
  38. #if defined(ARCH_X86)
  39. __asm("rorw $8, %0" :
  40. LEGACY_REGS (x) :
  41. "0" (x));
  42. #elif defined(ARCH_SH4)
  43. __asm__("swap.b %0,%0":"=r"(x):"0"(x));
  44. #else
  45. x= (x>>8) | (x<<8);
  46. #endif
  47. return x;
  48. }
  49. static av_always_inline uint32_t bswap_32(uint32_t x)
  50. {
  51. #if defined(ARCH_X86)
  52. #if __CPU__ != 386
  53. __asm("bswap %0":
  54. "=r" (x) :
  55. #else
  56. __asm("xchgb %b0,%h0\n"
  57. " rorl $16,%0\n"
  58. " xchgb %b0,%h0":
  59. LEGACY_REGS (x) :
  60. #endif
  61. "0" (x));
  62. #elif defined(ARCH_SH4)
  63. __asm__(
  64. "swap.b %0,%0\n"
  65. "swap.w %0,%0\n"
  66. "swap.b %0,%0\n"
  67. :"=r"(x):"0"(x));
  68. #elif defined(ARCH_ARM)
  69. uint32_t t;
  70. __asm__ (
  71. "eor %1, %0, %0, ror #16 \n\t"
  72. "bic %1, %1, #0xFF0000 \n\t"
  73. "mov %0, %0, ror #8 \n\t"
  74. "eor %0, %0, %1, lsr #8 \n\t"
  75. : "+r"(x), "+r"(t));
  76. #elif defined(ARCH_BFIN)
  77. unsigned tmp;
  78. asm("%1 = %0 >> 8 (V);\n\t"
  79. "%0 = %0 << 8 (V);\n\t"
  80. "%0 = %0 | %1;\n\t"
  81. "%0 = PACK(%0.L, %0.H);\n\t"
  82. : "+d"(x), "=&d"(tmp));
  83. #else
  84. x= ((x<<8)&0xFF00FF00) | ((x>>8)&0x00FF00FF);
  85. x= (x>>16) | (x<<16);
  86. #endif
  87. return x;
  88. }
  89. static inline uint64_t bswap_64(uint64_t x)
  90. {
  91. #if 0
  92. x= ((x<< 8)&0xFF00FF00FF00FF00ULL) | ((x>> 8)&0x00FF00FF00FF00FFULL);
  93. x= ((x<<16)&0xFFFF0000FFFF0000ULL) | ((x>>16)&0x0000FFFF0000FFFFULL);
  94. return (x>>32) | (x<<32);
  95. #elif defined(ARCH_X86_64)
  96. __asm("bswap %0":
  97. "=r" (x) :
  98. "0" (x));
  99. return x;
  100. #else
  101. union {
  102. uint64_t ll;
  103. uint32_t l[2];
  104. } w, r;
  105. w.ll = x;
  106. r.l[0] = bswap_32 (w.l[1]);
  107. r.l[1] = bswap_32 (w.l[0]);
  108. return r.ll;
  109. #endif
  110. }
  111. #endif /* !HAVE_BYTESWAP_H */
  112. // be2me ... BigEndian to MachineEndian
  113. // le2me ... LittleEndian to MachineEndian
  114. #ifdef WORDS_BIGENDIAN
  115. #define be2me_16(x) (x)
  116. #define be2me_32(x) (x)
  117. #define be2me_64(x) (x)
  118. #define le2me_16(x) bswap_16(x)
  119. #define le2me_32(x) bswap_32(x)
  120. #define le2me_64(x) bswap_64(x)
  121. #else
  122. #define be2me_16(x) bswap_16(x)
  123. #define be2me_32(x) bswap_32(x)
  124. #define be2me_64(x) bswap_64(x)
  125. #define le2me_16(x) (x)
  126. #define le2me_32(x) (x)
  127. #define le2me_64(x) (x)
  128. #endif
  129. #endif /* BSWAP_H */