plugins: Use <stdint.h> instead of _stdint.h
authorNirbheek Chauhan <nirbheek@centricular.com>
Fri, 12 Aug 2016 16:11:39 +0000 (21:41 +0530)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 19 Aug 2016 12:03:29 +0000 (13:03 +0100)
_stdint.h is generated by Autotools and we don't really need it. All
supported platforms now ship with stdint.h. The only stickler was MSVC,
and since Visual Studio 2015 it also ships stdint.h now.

ext/a52dec/gsta52dec.c
ext/dvdread/dvdreadsrc.c
ext/x264/gstx264enc.h
gst/realmedia/realhash.c
gst/realmedia/rtspreal.c

index a7b970c..eabf152 100644 (file)
 #endif
 
 #include <string.h>
-
 #include <stdlib.h>
-#include "_stdint.h"
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 
 #include <gst/gst.h>
 
index eed2df5..5df2637 100644 (file)
 #include "config.h"
 #endif
 
-#include "_stdint.h"
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <unistd.h>
 #include <string.h>
 #include <errno.h>
 
index d1135d9..25ac897 100644 (file)
 #include <gst/gst.h>
 #include <gst/video/video.h>
 #include <gst/video/gstvideoencoder.h>
-#include "_stdint.h"
+
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
 #include <x264.h>
 
 G_BEGIN_DECLS
index 294f204..97b1390 100644 (file)
 #include "config.h"
 #endif
 
-#include "_stdint.h"
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
 #include <string.h>
 
 #include <gst/gst.h>
index b7b3383..f3460a1 100644 (file)
 #include "config.h"
 #endif
 
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
 #include <stdlib.h>
-#include "_stdint.h"
 #include <string.h>
 
 #include <gst/rtsp/gstrtspextension.h>