view crc.h @ 69:da928d224953 libavutil

replace -D_GNU_SOURCE with -D_ISOC9X_SOURCE to avoid accidental use of gnu extensions
author mru
date Thu, 13 Jul 2006 23:10:01 +0000
parents 664e2d2b92b9
children 11be8e0d1344
line wrap: on
line source

#ifndef CRC_H
#define CRC_H

typedef uint32_t AVCRC;

extern AVCRC *av_crcEDB88320;
extern AVCRC *av_crc04C11DB7;
extern AVCRC *av_crc8005    ;
extern AVCRC *av_crc07      ;

int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size);
uint32_t av_crc(const AVCRC *ctx, uint32_t start_crc, const uint8_t *buffer, size_t length);

#endif /* CRC_H */