Unaligned memory access rcrash fix

Originally committed as revision 10781 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Benjamin Larsson 2007-10-18 15:16:07 +00:00
parent f97931c122
commit ff4b050ab4
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ static const int16_t nelly_delta_table[32] = {
typedef struct NellyMoserDecodeContext { typedef struct NellyMoserDecodeContext {
AVCodecContext* avctx; AVCodecContext* avctx;
float float_buf[NELLY_SAMPLES]; DECLARE_ALIGNED_16(float,float_buf[NELLY_SAMPLES]);
float state[64]; float state[64];
AVRandomState random_state; AVRandomState random_state;
GetBitContext gb; GetBitContext gb;