diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/celt/gstceltenc.h | 4 | ||||
-rw-r--r-- | gst/pcapparse/gstpcapparse.c | 2 |
3 files changed, 12 insertions, 2 deletions
@@ -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 6331f31c..6dc7c96a 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 4be76605..2d323d3c 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> |