summaryrefslogtreecommitdiff
path: root/libavformat/nut.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-08-09 16:46:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-08-09 16:46:48 +0000
commit5c2198b1841fa451ace272128966a3facc8932ea (patch)
treeea2684936159c470711ad8c0fab49b64b3ab88df /libavformat/nut.h
parent3af56110d4e1c6553cb98ab2b9246606f6ab92e8 (diff)
move crc wrapper to slightly better spot
Originally committed as revision 10022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r--libavformat/nut.h7
1 files changed, 1 insertions, 6 deletions
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 */