remove now-obsolete libOggFLAC stuff
[platform/upstream/flac.git] / src / libFLAC / include / private / md5.h
index 5215c9a..b2a96da 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "FLAC/ordinals.h"
 
-struct MD5Context {
+struct FLAC__MD5Context {
        FLAC__uint32 buf[4];
        FLAC__uint32 bytes[2];
        FLAC__uint32 in[16];
@@ -38,11 +38,11 @@ struct MD5Context {
        unsigned capacity;
 };
 
-void MD5Init(struct MD5Context *context);
-void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
-void MD5Final(md5byte digest[16], struct MD5Context *context);
-void MD5Transform(FLAC__uint32 buf[4], FLAC__uint32 const in[16]);
+void FLAC__MD5Init(struct FLAC__MD5Context *context);
+void FLAC__MD5Update(struct FLAC__MD5Context *context, md5byte const *buf, unsigned len);
+void FLAC__MD5Final(md5byte digest[16], struct FLAC__MD5Context *context);
+void FLAC__MD5Transform(FLAC__uint32 buf[4], FLAC__uint32 const in[16]);
 
-FLAC__bool FLAC__MD5Accumulate(struct MD5Context *ctx, const FLAC__int32 * const signal[], unsigned channels, unsigned samples, unsigned bytes_per_sample);
+FLAC__bool FLAC__MD5Accumulate(struct FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned channels, unsigned samples, unsigned bytes_per_sample);
 
 #endif /* !MD5_H */