bswap.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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