---
This is required due to the #include changes in libavutil/mem.h in the
next patch of the series.

 libavcodec/bytestream.h       |    1 +
 libavcodec/dct.c              |    1 +
 libavcodec/sinewin_tablegen.h |    2 ++
 libavdevice/timefilter.c      |    1 +
 libavutil/avstring.c          |    3 +++
 libavutil/dict.c              |    1 +
 6 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/libavcodec/bytestream.h b/libavcodec/bytestream.h
index 444f758..abbff23 100644
--- a/libavcodec/bytestream.h
+++ b/libavcodec/bytestream.h
@@ -27,6 +27,7 @@
 #include <string.h>
 
 #include "libavutil/common.h"
+#include "libavutil/error.h"
 #include "libavutil/intreadwrite.h"
 
 typedef struct {
diff --git a/libavcodec/dct.c b/libavcodec/dct.c
index e65671e..73716d3 100644
--- a/libavcodec/dct.c
+++ b/libavcodec/dct.c
@@ -28,6 +28,7 @@
  */
 
 #include <math.h>
+#include <string.h>
 
 #include "libavutil/mathematics.h"
 #include "dct.h"
diff --git a/libavcodec/sinewin_tablegen.h b/libavcodec/sinewin_tablegen.h
index 7d92026..51ccecf 100644
--- a/libavcodec/sinewin_tablegen.h
+++ b/libavcodec/sinewin_tablegen.h
@@ -27,7 +27,9 @@
 // do not use libavutil/libm.h since this is compiled both
 // for the host and the target and config.h is only valid for the target
 #include <math.h>
+
 #include "libavutil/attributes.h"
+#include "libavutil/common.h"
 
 #if !CONFIG_HARDCODED_TABLES
 SINETABLE(  32);
diff --git a/libavdevice/timefilter.c b/libavdevice/timefilter.c
index cf9d2c6..649d3c2 100644
--- a/libavdevice/timefilter.c
+++ b/libavdevice/timefilter.c
@@ -22,6 +22,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "libavutil/common.h"
 #include "libavutil/mem.h"
 #include "config.h"
 #include "timefilter.h"
diff --git a/libavutil/avstring.c b/libavutil/avstring.c
index 11f3a7c..ce5aea8 100644
--- a/libavutil/avstring.c
+++ b/libavutil/avstring.c
@@ -20,10 +20,13 @@
  */
 
 #include <stdarg.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
+
 #include "avstring.h"
+#include "common.h"
 #include "mem.h"
 
 int av_strstart(const char *str, const char *pfx, const char **ptr)
diff --git a/libavutil/dict.c b/libavutil/dict.c
index cb5f7b1..f8265b1 100644
--- a/libavutil/dict.c
+++ b/libavutil/dict.c
@@ -20,6 +20,7 @@
 
 #include "avstring.h"
 #include "dict.h"
+#include "error.h"
 #include "internal.h"
 #include "mem.h"
 
-- 
1.7.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to