diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-09-10 15:36:53 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-09-10 15:36:53 +0000 |
commit | 8faf5443929912a4b73886d065618a08f4472a62 (patch) | |
tree | 02e63a1c11bf8a613b19f36e8dddb3db1538d477 /libavcodec | |
parent | f3cd195aacfc48546563ca20638324ffc62b2282 (diff) | |
download | ffmpeg-8faf5443929912a4b73886d065618a08f4472a62.tar.gz |
Cleanup, from Emanuele Giaquinta <exg@gentoo.org>
Originally committed as revision 6221 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/wmadec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index b6c5116943..e80c6d82b7 100644 --- 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 |