Changeset 443 for libmpc/trunk/libmpcdec/streaminfo.c
- Timestamp:
- 06/24/09 23:22:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcdec/streaminfo.c
r431 r443 43 43 #include "mpc_bits_reader.h" 44 44 45 unsigned long crc32(unsigned char *buf, int len);45 unsigned long mpc_crc32(unsigned char *buf, int len); 46 46 47 47 static const char na[] = "n.a."; … … 191 191 192 192 CRC = (mpc_bits_read(&r, 16) << 16) | mpc_bits_read(&r, 16); 193 if (CRC != crc32(r.buff + 1 - (r.count >> 3), (int)block_size - 4))193 if (CRC != mpc_crc32(r.buff + 1 - (r.count >> 3), (int)block_size - 4)) 194 194 return MPC_STATUS_FILE; 195 195
Note: See TracChangeset
for help on using the changeset viewer.