diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-02-12 18:30:43 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-02-12 18:30:43 +0000 |
commit | 9264a302497c82db3d02247e2d97152407031af3 (patch) | |
tree | 33f91e46b8241c2b5a4260085eff48c90a93f2d5 | |
parent | b81b732bef60e9bec2ae4e3fa2c4bc5ba4cc9f2f (diff) | |
download | xine-lib-9264a302497c82db3d02247e2d97152407031af3.tar.gz xine-lib-9264a302497c82db3d02247e2d97152407031af3.tar.bz2 |
fix compiler warning on possibly uninitialized usage
(this code is already different in faad cvs, so this fix will not interfere with
the next sync)
CVS patchset: 6142
CVS date: 2004/02/12 18:30:43
-rw-r--r-- | src/libfaad/specrec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libfaad/specrec.c b/src/libfaad/specrec.c index 729a80193..ed1e2e7b3 100644 --- a/src/libfaad/specrec.c +++ b/src/libfaad/specrec.c @@ -22,7 +22,7 @@ ** Commercial non-GPL licensing of this software is possible. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. ** -** $Id: specrec.c,v 1.6 2004/01/26 22:34:11 jstembridge Exp $ +** $Id: specrec.c,v 1.7 2004/02/12 18:30:43 mroi Exp $ **/ /* @@ -892,7 +892,7 @@ uint8_t reconstruct_single_channel(faacDecHandle hDecoder, ic_stream *ics, uint8_t reconstruct_channel_pair(faacDecHandle hDecoder, ic_stream *ics1, ic_stream *ics2, element *cpe, int16_t *spec_data1, int16_t *spec_data2) { - uint8_t retval, mul; + uint8_t retval, mul = 1; ALIGN real_t spec_coef1[1024]; ALIGN real_t spec_coef2[1024]; |