summaryrefslogtreecommitdiff
path: root/mcast/common/crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'mcast/common/crc32.h')
-rw-r--r--mcast/common/crc32.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/mcast/common/crc32.h b/mcast/common/crc32.h
new file mode 100644
index 0000000..f4bef5e
--- /dev/null
+++ b/mcast/common/crc32.h
@@ -0,0 +1,35 @@
+/*
+ * (c) BayCom GmbH, http://www.baycom.de, info@baycom.de
+ *
+ * See the COPYING file for copyright information and
+ * how to reach the author.
+ *
+ */
+
+/*
+$Id: crc32.h,v 1.2 2006/01/02 18:24:04 rasc Exp $
+
+
+ DVBSNOOP
+
+ a dvb sniffer and mpeg2 stream analyzer tool
+ http://dvbsnoop.sourceforge.net/
+
+ (c) 2001-2006 Rainer.Scherg@gmx.de (rasc)
+
+
+ -- Code Module CRC32 taken von linuxtv.org
+
+*/
+
+
+
+#ifndef __CRC32_H
+#define __CRC32_H
+
+
+uint32_t dvb_crc32 (char *data, int len);
+
+
+#endif
+