Changeset 443 for libmpc/trunk/libmpcenc/bitstream.c
- Timestamp:
- 06/24/09 23:22:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcenc/bitstream.c
r427 r443 29 29 #include "stdio.h" 30 30 31 unsigned long crc32(unsigned char *buf, int len);31 unsigned long mpc_crc32(unsigned char *buf, int len); 32 32 33 33 #define MAX_ENUM 32 … … 207 207 if (addCRC) { 208 208 char tmp[4]; 209 unsigned long CRC32 = crc32((unsigned char *) e->buffer, e->pos);209 unsigned long CRC32 = mpc_crc32((unsigned char *) e->buffer, e->pos); 210 210 tmp[0] = (char) (CRC32 >> 24); 211 211 tmp[1] = (char) (CRC32 >> 16);
Note: See TracChangeset
for help on using the changeset viewer.