summaryrefslogtreecommitdiff
path: root/mcast/common/crc32.h
diff options
context:
space:
mode:
authorLars Heer <l.heer@gmx.de>2013-09-18 05:50:03 +0200
committerLars Heer <l.heer@gmx.de>2013-09-18 05:50:03 +0200
commitccf6e0f9c6b0481ed13e0f4794e3fbead750f385 (patch)
treeed86efb54f7ee41edfba5c89ca519b5fd10aa0d5 /mcast/common/crc32.h
downloadvdr-plugin-mcli-ccf6e0f9c6b0481ed13e0f4794e3fbead750f385.tar.gz
vdr-plugin-mcli-ccf6e0f9c6b0481ed13e0f4794e3fbead750f385.tar.bz2
added vdr-plugin-mcli-0.0.1+svn20120927
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
+