shithub: aacenc

Download patch

ref: 796443a92b5c55e9681d14dfc9326b5b4de7fd71
parent: bdb83a630e3c0c5b91481336e74951806efea534
author: Fabian Greffrath <fabian@greffrath.com>
date: Tue Oct 15 17:15:11 EDT 2019

unconditionally include stdint.h in frontend/input.h

Thanks @vividos

--- a/frontend/input.h
+++ b/frontend/input.h
@@ -31,28 +31,7 @@
 #ifdef HAVE_SYS_TYPES_H
 # include <sys/types.h>
 #endif
-#ifndef __MPEG4IP_INCLUDED__
-/* Let's avoid some boring conflicting declarations */
-#ifdef HAVE_INTTYPES_H
-# include <inttypes.h>
-#endif
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
-#endif
-
-#ifndef HAVE_INT32_T
-typedef signed int int32_t;
-#endif
-#ifndef HAVE_INT16_T
-typedef signed short int16_t;
-#endif
-#ifndef HAVE_U_INT32_T
-typedef unsigned int u_int32_t;
-#endif
-#ifndef HAVE_U_INT16_T
-typedef unsigned short u_int16_t;
-#endif
-#endif /* #ifndef __MPEG4IP_INCLUDED__ */
+#include <stdint.h>
 
 #ifdef __cplusplus
 extern "C"