summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-09-06 20:37:56 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-09-06 20:37:56 +0000
commita43a4d5747317c7a8f82406436369757616fa23c (patch)
treed38bbed0c6b9ee70bf23bcf3e214c8e58e2bfcc4
parentc9611e6507ffd7b84c70429afdf5d1c16cde11c1 (diff)
downloadgst-plugins-bad-a43a4d5747317c7a8f82406436369757616fa23c.tar.gz
gst-plugins-bad-a43a4d5747317c7a8f82406436369757616fa23c.tar.bz2
gst-plugins-bad-a43a4d5747317c7a8f82406436369757616fa23c.zip
gst/mpegtsparse/mpegtsparse.c: Fix the build (missing stdlib.h).
Original commit message from CVS: * gst/mpegtsparse/mpegtsparse.c: Fix the build (missing stdlib.h).
-rw-r--r--ChangeLog5
m---------common0
-rw-r--r--gst/mpegtsparse/mpegtsparse.c3
3 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 73014121..e9d61448 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-06 Stefan Kost <ensonic@users.sf.net>
+
+ * gst/mpegtsparse/mpegtsparse.c:
+ Fix the build (missing stdlib.h).
+
2007-09-06 Sebastian Dröge <slomo@circular-chaos.org>
* gst/spectrum/fix_fft.c:
diff --git a/common b/common
-Subproject cd25ca736bc2446800de2180ad71fc1da858d32
+Subproject 76752780462a3c4da712d56d54c45402144b3d0
diff --git a/gst/mpegtsparse/mpegtsparse.c b/gst/mpegtsparse/mpegtsparse.c
index 9d344c27..13ba609e 100644
--- a/gst/mpegtsparse/mpegtsparse.c
+++ b/gst/mpegtsparse/mpegtsparse.c
@@ -24,6 +24,9 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
+
+#include <stdlib.h>
+
#include "mpegtsparse.h"
#include "mpegtsparsemarshal.h"
#include "flutspatinfo.h"