summaryrefslogtreecommitdiffstats
path: root/ext/wavpack/md5.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2007-06-08 20:20:34 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2007-06-08 20:20:34 +0000
commit6bd7199f3af8001036926261c4c2a22a725bee39 (patch)
treeedca90a176655aede72d4102513d7139cf325722 /ext/wavpack/md5.h
parentdbf7acdf1d2218ba986021a3d6439cf848fd9162 (diff)
downloadgst-plugins-bad-6bd7199f3af8001036926261c4c2a22a725bee39.tar.gz
gst-plugins-bad-6bd7199f3af8001036926261c4c2a22a725bee39.tar.bz2
gst-plugins-bad-6bd7199f3af8001036926261c4c2a22a725bee39.zip
Move wavpack to good.
Original commit message from CVS: * configure.ac: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-bad-plugins-docs.sgml: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * docs/plugins/gst-plugins-bad-plugins.hierarchy: * docs/plugins/inspect/plugin-wavpack.xml: * ext/Makefile.am: * ext/wavpack/Makefile.am: * ext/wavpack/gstwavpack.c: * ext/wavpack/gstwavpackcommon.c: * ext/wavpack/gstwavpackcommon.h: * ext/wavpack/gstwavpackdec.c: * ext/wavpack/gstwavpackdec.h: * ext/wavpack/gstwavpackenc.c: * ext/wavpack/gstwavpackenc.h: * ext/wavpack/gstwavpackparse.c: * ext/wavpack/gstwavpackparse.h: * ext/wavpack/gstwavpackstreamreader.c: * ext/wavpack/gstwavpackstreamreader.h: * ext/wavpack/md5.c: * ext/wavpack/md5.h: * tests/check/Makefile.am: * tests/check/elements/wavpackdec.c: * tests/check/elements/wavpackenc.c: * tests/check/elements/wavpackparse.c: Move wavpack to good.
Diffstat (limited to 'ext/wavpack/md5.h')
-rw-r--r--ext/wavpack/md5.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/ext/wavpack/md5.h b/ext/wavpack/md5.h
deleted file mode 100644
index 6f810221..00000000
--- a/ext/wavpack/md5.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef MD5_H
-#define MD5_H
-
-#include "_stdint.h"
-
-#ifndef uint32
-typedef uint32_t uint32;
-#endif
-
-struct MD5Context
-{
- uint32 buf[4];
- uint32 bits[2];
- unsigned char in[64];
-};
-
-extern void MD5Init (struct MD5Context *ctx);
-extern void MD5Update (struct MD5Context *ctx, unsigned char *buf,
- unsigned len);
-extern void MD5Final (unsigned char digest[16], struct MD5Context *ctx);
-extern void MD5Transform (uint32 buf[4], uint32 in[16]);
-
-/*
- * This is needed to make RSAREF happy on some MS-DOS compilers.
- */
-typedef struct MD5Context MD5_CTX;
-
-#endif /* !MD5_H */