Changeset 7 for trunk/include
- Timestamp:
- 08/12/06 16:26:51 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/mpcdec/internal.h
r6 r7 46 46 /// Big/little endian 32 bit byte swapping routine. 47 47 static __inline 48 mpc_uint32_t swap32(mpc_uint32_t val) {48 mpc_uint32_t mpc_swap32(mpc_uint32_t val) { 49 49 return (((val & 0xff000000) >> 24) | ((val & 0x00ff0000) >> 8) | 50 50 ((val & 0x0000ff00) << 8) | ((val & 0x000000ff) << 24));
Note: See TracChangeset
for help on using the changeset viewer.