This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
align array used in mdct. fixes segfault.
Originally committed as revision 9848 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles
18 years ago
parent
873525491e
commit
dfd57c366f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/ac3dec.c
+ 1
- 1
libavcodec/ac3dec.c
View File
@@ -686,7 +686,7 @@ static void do_rematrixing(AC3DecodeContext *ctx)
static void do_imdct_256(AC3DecodeContext *ctx, int chindex)
{
int i, k;
float x[128];
DECLARE_ALIGNED_16(
float
,
x[128]
)
;
FFTComplex z[2][64];
float *o_ptr = ctx->tmp_output;
Write
Preview
Loading…
Cancel
Save