X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FlibFLAC%2Finclude%2Fprivate%2Fmd5.h;h=b2a96da1575989e902f6c9cc5964bb0e726f9b4f;hb=0b9442c3b6537a185b6af863340d91022953f7e6;hp=5215c9a439821f456115a46b05ce5fb3aeab7e92;hpb=57ba6f4eb7f2bb0b1bda14fec70e1dac64106770;p=platform%2Fupstream%2Fflac.git diff --git a/src/libFLAC/include/private/md5.h b/src/libFLAC/include/private/md5.h index 5215c9a..b2a96da 100644 --- a/src/libFLAC/include/private/md5.h +++ b/src/libFLAC/include/private/md5.h @@ -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 */