Mercurial > libavutil.hg
view crc.h @ 97:e57687759aed libavutil
Move all internal -I parameters to the front of CFLAGS to avoid using external
header files that happen to have the same name as internal ones.
author | diego |
---|---|
date | Thu, 17 Aug 2006 16:32:08 +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 */