SDL_endian.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_endian.h,v 1.4 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* Functions for reading and writing endian-specific values */
  23. #ifndef _SDL_endian_h
  24. #define _SDL_endian_h
  25. /* These functions read and write data of the specified endianness, 
  26.    dynamically translating to the host machine endianness.
  27.    e.g.: If you want to read a 16 bit value on big-endian machine from
  28.          an open file containing little endian values, you would use:
  29. value = SDL_ReadLE16(rp);
  30.          Note that the read/write functions use SDL_RWops pointers
  31.          instead of FILE pointers.  This allows you to read and write
  32.          endian values from large chunks of memory as well as files 
  33.          and other data sources.
  34. */
  35. #include <stdio.h>
  36. #include "SDL_types.h"
  37. #include "SDL_rwops.h"
  38. #include "SDL_byteorder.h"
  39. #include "begin_code.h"
  40. /* Set up for C function definitions, even when using C++ */
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif
  44. /* The macros used to swap values */
  45. /* Try to use superfast macros on systems that support them */
  46. #ifdef linux
  47. #include <asm/byteorder.h>
  48. #ifdef __arch__swab16
  49. #define SDL_Swap16  __arch__swab16
  50. #endif
  51. #ifdef __arch__swab32
  52. #define SDL_Swap32  __arch__swab32
  53. #endif
  54. #endif /* linux */
  55. /* Use inline functions for compilers that support them, and static
  56.    functions for those that do not.  Because these functions become
  57.    static for compilers that do not support inline functions, this
  58.    header should only be included in files that actually use them.
  59. */
  60. #ifndef SDL_Swap16
  61. static __inline__ Uint16 SDL_Swap16(Uint16 D) {
  62. return((D<<8)|(D>>8));
  63. }
  64. #endif
  65. #ifndef SDL_Swap32
  66. static __inline__ Uint32 SDL_Swap32(Uint32 D) {
  67. return((D<<24)|((D<<8)&0x00FF0000)|((D>>8)&0x0000FF00)|(D>>24));
  68. }
  69. #endif
  70. #ifdef SDL_HAS_64BIT_TYPE
  71. #ifndef SDL_Swap64
  72. static __inline__ Uint64 SDL_Swap64(Uint64 val) {
  73. Uint32 hi, lo;
  74. /* Separate into high and low 32-bit values and swap them */
  75. lo = (Uint32)(val&0xFFFFFFFF);
  76. val >>= 32;
  77. hi = (Uint32)(val&0xFFFFFFFF);
  78. val = SDL_Swap32(lo);
  79. val <<= 32;
  80. val |= SDL_Swap32(hi);
  81. return(val);
  82. }
  83. #endif
  84. #else
  85. #ifndef SDL_Swap64
  86. /* This is mainly to keep compilers from complaining in SDL code.
  87.    If there is no real 64-bit datatype, then compilers will complain about
  88.    the fake 64-bit datatype that SDL provides when it compiles user code.
  89. */
  90. #define SDL_Swap64(X) (X)
  91. #endif
  92. #endif /* SDL_HAS_64BIT_TYPE */
  93. /* Byteswap item from the specified endianness to the native endianness */
  94. #if SDL_BYTEORDER == SDL_LIL_ENDIAN
  95. #define SDL_SwapLE16(X) (X)
  96. #define SDL_SwapLE32(X) (X)
  97. #define SDL_SwapLE64(X) (X)
  98. #define SDL_SwapBE16(X) SDL_Swap16(X)
  99. #define SDL_SwapBE32(X) SDL_Swap32(X)
  100. #define SDL_SwapBE64(X) SDL_Swap64(X)
  101. #else
  102. #define SDL_SwapLE16(X) SDL_Swap16(X)
  103. #define SDL_SwapLE32(X) SDL_Swap32(X)
  104. #define SDL_SwapLE64(X) SDL_Swap64(X)
  105. #define SDL_SwapBE16(X) (X)
  106. #define SDL_SwapBE32(X) (X)
  107. #define SDL_SwapBE64(X) (X)
  108. #endif
  109. /* Read an item of the specified endianness and return in native format */
  110. extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops *src);
  111. extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops *src);
  112. extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src);
  113. extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src);
  114. extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops *src);
  115. extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops *src);
  116. /* Write an item of native format to the specified endianness */
  117. extern DECLSPEC int SDLCALL SDL_WriteLE16(SDL_RWops *dst, Uint16 value);
  118. extern DECLSPEC int SDLCALL SDL_WriteBE16(SDL_RWops *dst, Uint16 value);
  119. extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value);
  120. extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value);
  121. extern DECLSPEC int SDLCALL SDL_WriteLE64(SDL_RWops *dst, Uint64 value);
  122. extern DECLSPEC int SDLCALL SDL_WriteBE64(SDL_RWops *dst, Uint64 value);
  123. /* Ends C function definitions when using C++ */
  124. #ifdef __cplusplus
  125. }
  126. #endif
  127. #include "close_code.h"
  128. #endif /* _SDL_endian_h */