From 8ffabdbc667bf05c313a295c34ac7a340b86a315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Fri, 30 Jun 2006 21:36:27 +0000 Subject: 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 --- src/libfaad/output.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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) -- cgit v1.2.3