intreadwrite.h
上传用户:shlianrong
上传日期:2022-07-08
资源大小:309k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  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 AVUTIL_INTREADWRITE_H
  19. #define AVUTIL_INTREADWRITE_H
  20. //#include <stdint.h>
  21. #include "config.h"
  22. #include "bswap.h"
  23. #ifdef __GNUC__
  24. struct unaligned_64 { uint64_t l; } __attribute__((packed));
  25. struct unaligned_32 { uint32_t l; } __attribute__((packed));
  26. struct unaligned_16 { uint16_t l; } __attribute__((packed));
  27. #define AV_RN16(a) (((const struct unaligned_16 *) (a))->l)
  28. #define AV_RN32(a) (((const struct unaligned_32 *) (a))->l)
  29. #define AV_RN64(a) (((const struct unaligned_64 *) (a))->l)
  30. #define AV_WN16(a, b) (((struct unaligned_16 *) (a))->l) = (b)
  31. #define AV_WN32(a, b) (((struct unaligned_32 *) (a))->l) = (b)
  32. #define AV_WN64(a, b) (((struct unaligned_64 *) (a))->l) = (b)
  33. #elif defined(__DECC)
  34. #define AV_RN16(a) (*((const __unaligned uint16_t*)(a)))
  35. #define AV_RN32(a) (*((const __unaligned uint32_t*)(a)))
  36. #define AV_RN64(a) (*((const __unaligned uint64_t*)(a)))
  37. #define AV_WN16(a, b) *((__unaligned uint16_t*)(a)) = (b)
  38. #define AV_WN32(a, b) *((__unaligned uint32_t*)(a)) = (b)
  39. #define AV_WN64(a, b) *((__unaligned uint64_t*)(a)) = (b)
  40. #else
  41. #define AV_RN16(a) (*((const uint16_t*)(a)))
  42. #define AV_RN32(a) (*((const uint32_t*)(a)))
  43. #define AV_RN64(a) (*((const uint64_t*)(a)))
  44. #define AV_WN16(a, b) *((uint16_t*)(a)) = (b)
  45. #define AV_WN32(a, b) *((uint32_t*)(a)) = (b)
  46. #define AV_WN64(a, b) *((uint64_t*)(a)) = (b)
  47. #endif /* !__GNUC__ */
  48. /* endian macros */
  49. #define AV_RB8(x)     (((const uint8_t*)(x))[0])
  50. #define AV_WB8(p, d)  do { ((uint8_t*)(p))[0] = (d); } while(0)
  51. #define AV_RL8(x)     AV_RB8(x)
  52. #define AV_WL8(p, d)  AV_WB8(p, d)
  53. #ifdef HAVE_FAST_UNALIGNED
  54. # ifdef WORDS_BIGENDIAN
  55. #  define AV_RB16(x)    AV_RN16(x)
  56. #  define AV_WB16(p, d) AV_WN16(p, d)
  57. #  define AV_RL16(x)    bswap_16(AV_RN16(x))
  58. #  define AV_WL16(p, d) AV_WN16(p, bswap_16(d))
  59. #  define AV_RB32(x)    AV_RN32(x)
  60. #  define AV_WB32(p, d) AV_WN32(p, d)
  61. #  define AV_RL32(x)    bswap_32(AV_RN32(x))
  62. #  define AV_WL32(p, d) AV_WN32(p, bswap_32(d))
  63. #  define AV_RB64(x)    AV_RN64(x)
  64. #  define AV_WB64(p, d) AV_WN64(p, d)
  65. #  define AV_RL64(x)    bswap_64(AV_RN64(x))
  66. #  define AV_WL64(p, d) AV_WN64(p, bswap_64(d))
  67. # else /* WORDS_BIGENDIAN */
  68. #  define AV_RB16(x)    bswap_16(AV_RN16(x))
  69. #  define AV_WB16(p, d) AV_WN16(p, bswap_16(d))
  70. #  define AV_RL16(x)    AV_RN16(x)
  71. #  define AV_WL16(p, d) AV_WN16(p, d)
  72. #  define AV_RB32(x)    bswap_32(AV_RN32(x))
  73. #  define AV_WB32(p, d) AV_WN32(p, bswap_32(d))
  74. #  define AV_RL32(x)    AV_RN32(x)
  75. #  define AV_WL32(p, d) AV_WN32(p, d)
  76. #  define AV_RB64(x)    bswap_64(AV_RN64(x))
  77. #  define AV_WB64(p, d) AV_WN64(p, bswap_64(d))
  78. #  define AV_RL64(x)    AV_RN64(x)
  79. #  define AV_WL64(p, d) AV_WN64(p, d)
  80. # endif
  81. #else /* HAVE_FAST_UNALIGNED */
  82. #define AV_RB16(x)  ((((const uint8_t*)(x))[0] << 8) | ((const uint8_t*)(x))[1])
  83. #define AV_WB16(p, d) do { 
  84.                     ((uint8_t*)(p))[1] = (d); 
  85.                     ((uint8_t*)(p))[0] = (d)>>8; } while(0)
  86. #define AV_RL16(x)  ((((const uint8_t*)(x))[1] << 8) | 
  87.                       ((const uint8_t*)(x))[0])
  88. #define AV_WL16(p, d) do { 
  89.                     ((uint8_t*)(p))[0] = (d); 
  90.                     ((uint8_t*)(p))[1] = (d)>>8; } while(0)
  91. #define AV_RB32(x)  ((((const uint8_t*)(x))[0] << 24) | 
  92.                      (((const uint8_t*)(x))[1] << 16) | 
  93.                      (((const uint8_t*)(x))[2] <<  8) | 
  94.                       ((const uint8_t*)(x))[3])
  95. #define AV_WB32(p, d) do { 
  96.                     ((uint8_t*)(p))[3] = (d); 
  97.                     ((uint8_t*)(p))[2] = (d)>>8; 
  98.                     ((uint8_t*)(p))[1] = (d)>>16; 
  99.                     ((uint8_t*)(p))[0] = (d)>>24; } while(0)
  100. #define AV_RL32(x) ((((const uint8_t*)(x))[3] << 24) | 
  101.                     (((const uint8_t*)(x))[2] << 16) | 
  102.                     (((const uint8_t*)(x))[1] <<  8) | 
  103.                      ((const uint8_t*)(x))[0])
  104. #define AV_WL32(p, d) do { 
  105.                     ((uint8_t*)(p))[0] = (d); 
  106.                     ((uint8_t*)(p))[1] = (d)>>8; 
  107.                     ((uint8_t*)(p))[2] = (d)>>16; 
  108.                     ((uint8_t*)(p))[3] = (d)>>24; } while(0)
  109. #define AV_RB64(x)  (((uint64_t)((const uint8_t*)(x))[0] << 56) | 
  110.                      ((uint64_t)((const uint8_t*)(x))[1] << 48) | 
  111.                      ((uint64_t)((const uint8_t*)(x))[2] << 40) | 
  112.                      ((uint64_t)((const uint8_t*)(x))[3] << 32) | 
  113.                      ((uint64_t)((const uint8_t*)(x))[4] << 24) | 
  114.                      ((uint64_t)((const uint8_t*)(x))[5] << 16) | 
  115.                      ((uint64_t)((const uint8_t*)(x))[6] <<  8) | 
  116.                       (uint64_t)((const uint8_t*)(x))[7])
  117. #define AV_WB64(p, d) do { 
  118.                     ((uint8_t*)(p))[7] = (d);     
  119.                     ((uint8_t*)(p))[6] = (d)>>8;  
  120.                     ((uint8_t*)(p))[5] = (d)>>16; 
  121.                     ((uint8_t*)(p))[4] = (d)>>24; 
  122.                     ((uint8_t*)(p))[3] = (d)>>32; 
  123.                     ((uint8_t*)(p))[2] = (d)>>40; 
  124.                     ((uint8_t*)(p))[1] = (d)>>48; 
  125.                     ((uint8_t*)(p))[0] = (d)>>56; } while(0)
  126. #define AV_RL64(x)  (((uint64_t)((const uint8_t*)(x))[7] << 56) | 
  127.                      ((uint64_t)((const uint8_t*)(x))[6] << 48) | 
  128.                      ((uint64_t)((const uint8_t*)(x))[5] << 40) | 
  129.                      ((uint64_t)((const uint8_t*)(x))[4] << 32) | 
  130.                      ((uint64_t)((const uint8_t*)(x))[3] << 24) | 
  131.                      ((uint64_t)((const uint8_t*)(x))[2] << 16) | 
  132.                      ((uint64_t)((const uint8_t*)(x))[1] <<  8) | 
  133.                       (uint64_t)((const uint8_t*)(x))[0])
  134. #define AV_WL64(p, d) do { 
  135.                     ((uint8_t*)(p))[0] = (d);     
  136.                     ((uint8_t*)(p))[1] = (d)>>8;  
  137.                     ((uint8_t*)(p))[2] = (d)>>16; 
  138.                     ((uint8_t*)(p))[3] = (d)>>24; 
  139.                     ((uint8_t*)(p))[4] = (d)>>32; 
  140.                     ((uint8_t*)(p))[5] = (d)>>40; 
  141.                     ((uint8_t*)(p))[6] = (d)>>48; 
  142.                     ((uint8_t*)(p))[7] = (d)>>56; } while(0)
  143. #endif  /* HAVE_FAST_UNALIGNED */
  144. #define AV_RB24(x)  ((((const uint8_t*)(x))[0] << 16) | 
  145.                      (((const uint8_t*)(x))[1] <<  8) | 
  146.                       ((const uint8_t*)(x))[2])
  147. #define AV_WB24(p, d) do { 
  148.                     ((uint8_t*)(p))[2] = (d); 
  149.                     ((uint8_t*)(p))[1] = (d)>>8; 
  150.                     ((uint8_t*)(p))[0] = (d)>>16; } while(0)
  151. #define AV_RL24(x)  ((((const uint8_t*)(x))[2] << 16) | 
  152.                      (((const uint8_t*)(x))[1] <<  8) | 
  153.                       ((const uint8_t*)(x))[0])
  154. #define AV_WL24(p, d) do { 
  155.                     ((uint8_t*)(p))[0] = (d); 
  156.                     ((uint8_t*)(p))[1] = (d)>>8; 
  157.                     ((uint8_t*)(p))[2] = (d)>>16; } while(0)
  158. #endif /* AVUTIL_INTREADWRITE_H */