From 5c2198b1841fa451ace272128966a3facc8932ea Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 9 Aug 2007 16:46:48 +0000 Subject: move crc wrapper to slightly better spot Originally committed as revision 10022 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nut.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'libavformat/nut.h') diff --git a/libavformat/nut.h b/libavformat/nut.h index 9dadbffe52..a96d111d50 100644 --- a/libavformat/nut.h +++ b/libavformat/nut.h @@ -92,12 +92,7 @@ typedef struct { struct AVTreeNode *syncpoints; } NUTContext; - -//FIXME move to a common spot, like crc.c/h -static unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){ - return av_crc(av_crc04C11DB7, checksum, buf, len); -} - +unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len); void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val); #endif /* AVFORMAT_NUT_H */ -- cgit v1.2.3