projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3cd195
)
Cleanup, from Emanuele Giaquinta <exg@gentoo.org>
author
Luca Barbato
<lu_zero@gentoo.org>
Sun, 10 Sep 2006 15:36:53 +0000
(15:36 +0000)
committer
Luca Barbato
<lu_zero@gentoo.org>
Sun, 10 Sep 2006 15:36:53 +0000
(15:36 +0000)
Originally committed as revision 6221 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/wmadec.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/wmadec.c
b/libavcodec/wmadec.c
index
b6c5116
..
e80c6d8
100644
(file)
--- a/
libavcodec/wmadec.c
+++ b/
libavcodec/wmadec.c
@@
-716,12
+716,7
@@
static int wma_decode_block(WMADecodeContext *s)
int n, v, a, ch, code, bsize;
int coef_nb_bits, total_gain, parse_exponents;
DECLARE_ALIGNED_16(float, window[BLOCK_MAX_SIZE * 2]);
-// XXX: FIXME!! there's a bug somewhere which makes this mandatory under altivec
-#ifdef HAVE_ALTIVEC
- volatile int nb_coefs[MAX_CHANNELS] __attribute__((aligned(16)));
-#else
int nb_coefs[MAX_CHANNELS];
-#endif
float mdct_norm;
#ifdef TRACE