move crc wrapper to slightly better spot
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 9 Aug 2007 16:46:48 +0000 (16:46 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 9 Aug 2007 16:46:48 +0000 (16:46 +0000)
Originally committed as revision 10022 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/nut.c
libavformat/nut.h

index 5f81957b12cd99a73bece8ee3ce0582097a0c1a4..4c41db35dcf6ca0cad6827793f1c0d27f5cbef8e 100644 (file)
 
 #include "nut.h"
 
+unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){
+    return av_crc(av_crc04C11DB7, checksum, buf, len);
+}
+
 void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val){
     int i;
     for(i=0; i<nut->avf->nb_streams; i++){
index 9dadbffe5292b4b3de94b0fa46cffd96399f2c19..a96d111d50a4aa16895d7a87ba6623c12652abe0 100644 (file)
@@ -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 */