Commit fea3c1d0 authored by Jeffrey Knockel's avatar Jeffrey Knockel Committed by Martin Storsjo

Make sure AACdynamic_RAM gets allocated aligned to 8 bytes

This fixes assert failures on platforms where malloc doesn't provide
8 byte alignment, such as Win9x.
parent 790bf9f0
......@@ -95,7 +95,7 @@ amm-info@iis.fraunhofer.de
#include "aacEnc_ram.h"
C_ALLOC_MEM (AACdynamic_RAM, FIXP_DBL, AAC_ENC_DYN_RAM_SIZE/sizeof(FIXP_DBL))
C_AALLOC_MEM (AACdynamic_RAM, FIXP_DBL, AAC_ENC_DYN_RAM_SIZE/sizeof(FIXP_DBL))
/*
Static memory areas, must not be overwritten in other sections of the decoder !
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment