You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
365B

  1. #ifndef CRC_H
  2. #define CRC_H
  3. typedef uint32_t AVCRC;
  4. extern AVCRC *av_crcEDB88320;
  5. extern AVCRC *av_crc04C11DB7;
  6. extern AVCRC *av_crc8005 ;
  7. extern AVCRC *av_crc07 ;
  8. int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size);
  9. uint32_t av_crc(const AVCRC *ctx, uint32_t start_crc, const uint8_t *buffer, size_t length);
  10. #endif /* CRC_H */