diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-30 21:36:27 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-06-30 21:36:27 +0000 |
commit | 8ffabdbc667bf05c313a295c34ac7a340b86a315 (patch) | |
tree | 76f192ff8df21a3cf8de36cfea898417a3abfab4 /src | |
parent | 545030e30b27c1c2a9f24b15fa31e98726d36373 (diff) | |
download | xine-lib-8ffabdbc667bf05c313a295c34ac7a340b86a315.tar.gz xine-lib-8ffabdbc667bf05c313a295c34ac7a340b86a315.tar.bz2 |
Change in32 in int32_t to fix building on some systems, as reported by Reinhard Tartler.
CVS patchset: 8086
CVS date: 2006/06/30 21:36:27
Diffstat (limited to 'src')
-rw-r--r-- | src/libfaad/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libfaad/output.c b/src/libfaad/output.c index cf02505c6..33ebed39c 100644 --- a/src/libfaad/output.c +++ b/src/libfaad/output.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: output.c,v 1.8 2006/06/17 20:43:57 dgp85 Exp $ +** $Id: output.c,v 1.9 2006/06/30 21:36:27 dgp85 Exp $ **/ #include "common.h" @@ -594,7 +594,7 @@ void *output_to_PCM(NeAACDecHandle hDecoder, { for (ch = 0; ch < channels; ++ch) { - int32 tmp = input[hDecoder->internal_channel[ch]][i]; + int32_t tmp = input[hDecoder->internal_channel[ch]][i]; tmp += (1 << (REAL_BITS - 1)); tmp >>= REAL_BITS; if ((tmp + 0x8000) & ~0xffff) |