[FFmpeg-cvslog] r10781 - trunk/libavcodec/nellymoserdec.c
banan
subversion
Thu Oct 18 17:16:08 CEST 2007
Author: banan
Date: Thu Oct 18 17:16:07 2007
New Revision: 10781
Log:
Unaligned memory access rcrash fix
Modified:
trunk/libavcodec/nellymoserdec.c
Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c (original)
+++ trunk/libavcodec/nellymoserdec.c Thu Oct 18 17:16:07 2007
@@ -91,7 +91,7 @@ static const int16_t nelly_delta_table[3
typedef struct NellyMoserDecodeContext {
AVCodecContext* avctx;
- float float_buf[NELLY_SAMPLES];
+ DECLARE_ALIGNED_16(float,float_buf[NELLY_SAMPLES]);
float state[64];
AVRandomState random_state;
GetBitContext gb;
More information about the ffmpeg-cvslog
mailing list