summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/wmadec.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2010-07-17 10:57:40 +0000
committerNils Wallménius <nils@rockbox.org>2010-07-17 10:57:40 +0000
commitfa15494ab8638f0a9d2e7b160514b5062cccf715 (patch)
treecc2c6c118ed2623e1bca076bc4c251035fda6682 /apps/codecs/libwma/wmadec.h
parent87b29215d5fb77313c8cb9cfe8b3f27ef22ec415 (diff)
downloadrockbox-fa15494ab8638f0a9d2e7b160514b5062cccf715.tar.gz
rockbox-fa15494ab8638f0a9d2e7b160514b5062cccf715.zip
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
Diffstat (limited to 'apps/codecs/libwma/wmadec.h')
-rw-r--r--apps/codecs/libwma/wmadec.h4
1 files changed, 2 insertions, 2 deletions
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
147 fixed32 noise_mult; /* XXX: suppress that and integrate it in the noise array */ 147 fixed32 noise_mult; /* XXX: suppress that and integrate it in the noise array */
148 /* lsp_to_curve tables */ 148 /* lsp_to_curve tables */
149 fixed32 lsp_cos_table[BLOCK_MAX_SIZE]; 149 fixed32 lsp_cos_table[BLOCK_MAX_SIZE];
150 fixed32 *lsp_pow_m_table1; 150 void *lsp_pow_m_table1;
151 fixed32 *lsp_pow_m_table2; 151 void *lsp_pow_m_table2;
152 152
153 /* State of current superframe decoding */ 153 /* State of current superframe decoding */
154 int bit_offset; 154 int bit_offset;