diff options
author | Edward Hervey <bilboed@bilboed.com> | 2008-08-26 11:01:43 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2008-08-26 11:01:43 +0000 |
commit | e574c3e69d4472bdf6a7d8ba2fdbfdc395d6da82 (patch) | |
tree | e12b43c75fd7c8d59ca682b2afd2e2d2b7a00113 | |
parent | 3e4982542b8b085e037da35c65975d7ad1b96e90 (diff) | |
download | gst-plugins-bad-e574c3e69d4472bdf6a7d8ba2fdbfdc395d6da82.tar.gz gst-plugins-bad-e574c3e69d4472bdf6a7d8ba2fdbfdc395d6da82.tar.bz2 gst-plugins-bad-e574c3e69d4472bdf6a7d8ba2fdbfdc395d6da82.zip |
gst/pcapparse/gstpcapparse.c: Remove unused code and fix includes.
Original commit message from CVS:
* gst/pcapparse/gstpcapparse.c: (gst_pcap_parse_class_init):
Remove unused code and fix includes.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/pcapparse/gstpcapparse.c | 15 |
2 files changed, 8 insertions, 12 deletions
@@ -1,3 +1,8 @@ +2008-08-26 Edward Hervey <edward.hervey@collabora.co.uk> + + * gst/pcapparse/gstpcapparse.c: (gst_pcap_parse_class_init): + Remove unused code and fix includes. + 2008-08-25 Sebastian Dröge <sebastian.droege@collabora.co.uk> * gst/deinterlace2/gstdeinterlace2.c: diff --git a/gst/pcapparse/gstpcapparse.c b/gst/pcapparse/gstpcapparse.c index f2674ea6..4be76605 100644 --- a/gst/pcapparse/gstpcapparse.c +++ b/gst/pcapparse/gstpcapparse.c @@ -40,15 +40,16 @@ * - Implement support for timestamping the buffers. */ -#include "gstpcapparse.h" - #ifdef HAVE_CONFIG_H # include <config.h> #endif +#include "gstpcapparse.h" + #ifndef _MSC_VER #include <arpa/inet.h> #include <netinet/in.h> +#include <string.h> #else #include <winsock2.h> #endif @@ -76,7 +77,6 @@ static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src", GST_STATIC_CAPS_ANY); static void gst_pcap_parse_dispose (GObject * object); -static void gst_pcap_parse_finalize (GObject * object); static void gst_pcap_parse_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); static void gst_pcap_parse_set_property (GObject * object, guint prop_id, @@ -113,7 +113,6 @@ gst_pcap_parse_class_init (GstPcapParseClass * klass) GObjectClass *gobject_class = G_OBJECT_CLASS (klass); gobject_class->dispose = gst_pcap_parse_dispose; - gobject_class->finalize = gst_pcap_parse_finalize; gobject_class->get_property = gst_pcap_parse_get_property; gobject_class->set_property = gst_pcap_parse_set_property; @@ -171,14 +170,6 @@ gst_pcap_parse_dispose (GObject * object) G_OBJECT_CLASS (parent_class)->dispose (object); } -static void -gst_pcap_parse_finalize (GObject * object) -{ - GstPcapParse *self = GST_PCAP_PARSE (object); - - G_OBJECT_CLASS (parent_class)->finalize (object); -} - static const gchar * get_ip_address_as_string (gint64 ip_addr) { |