Ignore:
Timestamp:
06/24/09 23:22:00 (15 years ago)
Author:
r2d
Message:

renamed crc32 to mpc_crc32 to avoid name conflics with static libs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcdec/streaminfo.c

    r431 r443  
    4343#include "mpc_bits_reader.h"
    4444
    45 unsigned long crc32(unsigned char *buf, int len);
     45unsigned long mpc_crc32(unsigned char *buf, int len);
    4646
    4747static const char na[] = "n.a.";
     
    191191
    192192        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))
    194194                return MPC_STATUS_FILE;
    195195
Note: See TracChangeset for help on using the changeset viewer.