summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-10-07 14:03:20 +0300
committerStefan Kost <ensonic@users.sf.net>2009-10-07 14:03:20 +0300
commite0cdd879b46d0e27009595d9d06b71d65b7d7113 (patch)
treebc0de444eeac47570618a8c349d2048759bd0487 /gst
parent27ea0b076a1f1d44c3da1c677eddf62d01eef1f1 (diff)
build: fprintf, sprintf, sscanf need stdio.h
Diffstat (limited to 'gst')
-rw-r--r--gst/apetag/gstapedemux.c1
-rw-r--r--gst/debugutils/tests.c1
-rw-r--r--gst/id3demux/id3v2frames.c1
-rw-r--r--gst/qtdemux/qtdemux.c1
-rw-r--r--gst/rtp/gstrtph264depay.c1
-rw-r--r--gst/rtp/gstrtpjpegdepay.c1
-rw-r--r--gst/rtpmanager/gstrtpbin.c1
-rw-r--r--gst/rtsp/gstrtpdec.c1
8 files changed, 8 insertions, 0 deletions
diff --git a/gst/apetag/gstapedemux.c b/gst/apetag/gstapedemux.c
index be622e88..eb448e8e 100644
--- a/gst/apetag/gstapedemux.c
+++ b/gst/apetag/gstapedemux.c
@@ -52,6 +52,7 @@
#include "gstapedemux.h"
+#include <stdio.h>
#include <string.h>
#define APE_VERSION_MAJOR(ver) ((ver)/1000)
diff --git a/gst/debugutils/tests.c b/gst/debugutils/tests.c
index cd382782..16520239 100644
--- a/gst/debugutils/tests.c
+++ b/gst/debugutils/tests.c
@@ -25,6 +25,7 @@
#endif
#include "tests.h"
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/gst/id3demux/id3v2frames.c b/gst/id3demux/id3v2frames.c
index 076abc70..a91279c4 100644
--- a/gst/id3demux/id3v2frames.c
+++ b/gst/id3demux/id3v2frames.c
@@ -24,6 +24,7 @@
#endif
#include <string.h>
+#include <stdio.h>
#include <stdlib.h>
#include <gst/tag/tag.h>
#include <gst/base/gsttypefindhelper.h>
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 8f1ebd1a..4e955098 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -57,6 +57,7 @@
#include "qtdemux.h"
#include "qtpalette.h"
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/gst/rtp/gstrtph264depay.c b/gst/rtp/gstrtph264depay.c
index 574493d9..0621ffd3 100644
--- a/gst/rtp/gstrtph264depay.c
+++ b/gst/rtp/gstrtph264depay.c
@@ -21,6 +21,7 @@
# include "config.h"
#endif
+#include <stdio.h>
#include <string.h>
#include <gst/rtp/gstrtpbuffer.h>
diff --git a/gst/rtp/gstrtpjpegdepay.c b/gst/rtp/gstrtpjpegdepay.c
index 6dac31c3..0ec6a97d 100644
--- a/gst/rtp/gstrtpjpegdepay.c
+++ b/gst/rtp/gstrtpjpegdepay.c
@@ -24,6 +24,7 @@
#include <gst/rtp/gstrtpbuffer.h>
#include <math.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "gstrtpjpegdepay.h"
diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c
index 142dfa82..a27fcc8d 100644
--- a/gst/rtpmanager/gstrtpbin.c
+++ b/gst/rtpmanager/gstrtpbin.c
@@ -112,6 +112,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
+#include <stdio.h>
#include <string.h>
#include <gst/rtp/gstrtpbuffer.h>
diff --git a/gst/rtsp/gstrtpdec.c b/gst/rtsp/gstrtpdec.c
index 5279713e..0382766f 100644
--- a/gst/rtsp/gstrtpdec.c
+++ b/gst/rtsp/gstrtpdec.c
@@ -58,6 +58,7 @@
#endif
#include "gstrtpdec.h"
+#include <stdio.h>
GST_DEBUG_CATEGORY_STATIC (rtpdec_debug);
#define GST_CAT_DEFAULT (rtpdec_debug)