ref: df5d68d794da10dca8ed2723a42be44f92fb16d5
parent: c69c88195cae2f775a1a21f797686667682bc900
author: Fabian Greffrath <fabian@greffrath.com>
date: Wed Oct 2 07:13:35 EDT 2019
remove some extra stdint-includes
--- a/frontend/input.c
+++ b/frontend/input.c
@@ -25,7 +25,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include <stdint.h>
#include <string.h>
#ifdef _WIN32
--- a/frontend/mp4write.c
+++ b/frontend/mp4write.c
@@ -23,7 +23,6 @@
#include <stdlib.h>
#include <stdio.h>
-#include <stdint.h>
#ifndef WORDS_BIGENDIAN
//#include <byteswap.h>
#endif
@@ -31,6 +30,8 @@
#include <time.h>
#include <unistd.h>
+#include "mp4write.h"
+
enum ATOM_TYPE
{
ATOM_STOP = 0 /* end of atoms */ ,
@@ -44,8 +45,6 @@
uint16_t opcode;
void *data;
} creator_t;
-
-#include "mp4write.h"
mp4config_t mp4config = { 0 };
--- a/include/faac.h
+++ b/include/faac.h
@@ -48,7 +48,6 @@
#include <stdint.h>
#include "faaccfg.h"
-#include <stdint.h>
typedef void *faacEncHandle;
--- a/libfaac/frame.h
+++ b/libfaac/frame.h
@@ -25,8 +25,6 @@
#include "config.h"
#endif
-#include <stdint.h>
-
#include <faac.h>
#ifdef __cplusplus
--- a/libfaac/huff2.c
+++ b/libfaac/huff2.c
@@ -17,7 +17,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
-#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "coder.h"