shithub: aacenc

Download patch

ref: b543d73f2deecac1619b27017c6a68d43dd89687
parent: 4373a7ad9f9ca2321a763b5059c2fc969e7888a7
author: Michael Fink <michael.fink@asamnet.de>
date: Sat Aug 4 09:04:30 EDT 2018

added missing include stdint.h needed for using int32_t, uint8_t, etc.

--- a/frontend/input.c
+++ b/frontend/input.c
@@ -25,6 +25,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdint.h>
 #include <string.h>
 
 #ifdef _WIN32
--- a/include/faac.h
+++ b/include/faac.h
@@ -47,6 +47,7 @@
 psymodellist_t;
 
 #include "faaccfg.h"
+#include <stdint.h>
 
 
 typedef void *faacEncHandle;