Changeset 481 for libmpc/trunk/mpcdec/mpcdec.c
- Timestamp:
- 04/06/12 01:07:04 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/mpcdec/mpcdec.c
r480 r481 41 41 #include <getopt.h> 42 42 #include <math.h> 43 #include <byteswap.h>44 43 45 44 #ifdef _MSC_VER … … 76 75 FILE* p_handle = (FILE*) p_user_data; 77 76 return (t_wav_uint32) !fseek(p_handle, p_position, SEEK_SET); 77 } 78 79 static short bswap_16(short in) 80 { 81 return (in << 8) | ((in >> 8) & 0xFF); 78 82 } 79 83
Note: See TracChangeset
for help on using the changeset viewer.