shithub: aacdec

Download patch

ref: 66d2a35dec86f0208f6cfc29642aefc7977458ae
parent: 0878897bd04eaf93099d56ddc663f9f6440550c2
author: menno <menno>
date: Thu Feb 5 22:39:58 EST 2009

Fixed difference in declarations

--- a/libfaad/mp4.c
+++ b/libfaad/mp4.c
@@ -25,7 +25,7 @@
 ** Commercial non-GPL licensing of this software is possible.
 ** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
 **
-** $Id: mp4.c,v 1.39 2008/03/23 23:03:29 menno Exp $
+** $Id: mp4.c,v 1.40 2009/02/06 03:39:58 menno Exp $
 **/
 
 #include "common.h"
@@ -114,9 +114,9 @@
 };
 
 /* Table 1.6.1 */
-int8_t NEAACDECAPI NeAACDecAudioSpecificConfig(uint8_t *pBuffer,
-                                               uint32_t buffer_size,
-                                               mp4AudioSpecificConfig *mp4ASC)
+char NEAACDECAPI NeAACDecAudioSpecificConfig(unsigned char *pBuffer,
+                                             unsigned long buffer_size,
+                                             mp4AudioSpecificConfig *mp4ASC)
 {
     return AudioSpecificConfig2(pBuffer, buffer_size, mp4ASC, NULL, 0);
 }