summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--ext/celt/gstceltenc.h4
-rw-r--r--gst/pcapparse/gstpcapparse.c2
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8b9933bf0..43ca474aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2008-09-15 Stefan Kost <ensonic@users.sf.net>
+ * ext/celt/gstceltenc.h:
+ Help gtk-doc to parse this correctly.
+
+ * gst/pcapparse/gstpcapparse.c:
+ Add missing include.
+
+2008-09-15 Stefan Kost <ensonic@users.sf.net>
+
* examples/Makefile.am:
Only built scaletempo example if we have gtk.
diff --git a/ext/celt/gstceltenc.h b/ext/celt/gstceltenc.h
index 6331f31cc..6dc7c96a6 100644
--- a/ext/celt/gstceltenc.h
+++ b/ext/celt/gstceltenc.h
@@ -52,8 +52,8 @@ struct _GstCeltEnc {
GstElement element;
/* pads */
- GstPad *sinkpad,
- *srcpad;
+ GstPad *sinkpad;
+ GstPad *srcpad;
CELTHeader header;
CELTMode *mode;
diff --git a/gst/pcapparse/gstpcapparse.c b/gst/pcapparse/gstpcapparse.c
index 4be76605f..2d323d3c0 100644
--- a/gst/pcapparse/gstpcapparse.c
+++ b/gst/pcapparse/gstpcapparse.c
@@ -46,6 +46,8 @@
#include "gstpcapparse.h"
+#include <string.h>
+
#ifndef _MSC_VER
#include <arpa/inet.h>
#include <netinet/in.h>