From fa15494ab8638f0a9d2e7b160514b5062cccf715 Mon Sep 17 00:00:00 2001 From: Nils Wallménius Date: Sat, 17 Jul 2010 10:57:40 +0000 Subject: libwma: void pointer voodoo to get rid ov strict aliasing warnings git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27463 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libwma/wmadec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/codecs/libwma/wmadec.h') diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h index 1f08e653cf..ec295fa472 100644 --- a/apps/codecs/libwma/wmadec.h +++ b/apps/codecs/libwma/wmadec.h @@ -147,8 +147,8 @@ typedef struct WMADecodeContext fixed32 noise_mult; /* XXX: suppress that and integrate it in the noise array */ /* lsp_to_curve tables */ fixed32 lsp_cos_table[BLOCK_MAX_SIZE]; - fixed32 *lsp_pow_m_table1; - fixed32 *lsp_pow_m_table2; + void *lsp_pow_m_table1; + void *lsp_pow_m_table2; /* State of current superframe decoding */ int bit_offset; -- cgit v1.2.3