From f18d1a93390fedbb03f81db82322215ce027c1e0 Mon Sep 17 00:00:00 2001 From: Robert Shih Date: Mon, 5 Jan 2015 17:35:54 -0800 Subject: libFLAC: merge master from Xiph remote: https://git.xiph.org/flac.git commit: 775eb93 Bug: 18872897 Bug: 18910747 Change-Id: I6e450e44c96b97c3323e428b9e6d420422f24a4e (cherry picked from commit 31e4f3166a91a2ebb34f643787122a638d9f1471) Tested-by: Wolfgang Wiedmeyer --- libFLAC/include/private/md5.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'libFLAC/include/private/md5.h') diff --git a/libFLAC/include/private/md5.h b/libFLAC/include/private/md5.h index e5f675a..c665ab3 100644 --- a/libFLAC/include/private/md5.h +++ b/libFLAC/include/private/md5.h @@ -28,11 +28,17 @@ #include "FLAC/ordinals.h" +typedef union { + FLAC__byte *p8; + FLAC__int16 *p16; + FLAC__int32 *p32; +} FLAC__multibyte; + typedef struct { FLAC__uint32 in[16]; FLAC__uint32 buf[4]; FLAC__uint32 bytes[2]; - FLAC__byte *internal_buf; + FLAC__multibyte internal_buf; size_t capacity; } FLAC__MD5Context; -- cgit v1.1