projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f97931c
)
Unaligned memory access rcrash fix
author
Benjamin Larsson
<banan@ludd.ltu.se>
Thu, 18 Oct 2007 15:16:07 +0000
(15:16 +0000)
committer
Benjamin Larsson
<banan@ludd.ltu.se>
Thu, 18 Oct 2007 15:16:07 +0000
(15:16 +0000)
Originally committed as revision 10781 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/nellymoserdec.c
patch
|
blob
|
history
diff --git
a/libavcodec/nellymoserdec.c
b/libavcodec/nellymoserdec.c
index
bf955a2
..
eb7b0fd
100644
(file)
--- a/
libavcodec/nellymoserdec.c
+++ b/
libavcodec/nellymoserdec.c
@@
-91,7
+91,7
@@
static const int16_t nelly_delta_table[32] = {
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;