From e276fe38badbf6f2e7b29ffa3ff0aab0bf443b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 10 Mar 2006 13:49:23 +0000 Subject: ext/libmms/gstmms.*: Some clean-ups; more debug output; use blocksize property of GstBaseSrc instead of re-registerin... Original commit message from CVS: * ext/libmms/gstmms.c: (gst_mms_urihandler_init), (gst_mms_base_init), (gst_mms_class_init), (gst_mms_init), (gst_mms_finalize), (gst_mms_create), (gst_mms_start), (gst_mms_set_property), (gst_mms_get_property), (gst_mms_uri_get_uri): * ext/libmms/gstmms.h: Some clean-ups; more debug output; use blocksize property of GstBaseSrc instead of re-registering our own; make debug category actually be used. --- ext/libmms/gstmms.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ext/libmms/gstmms.h') diff --git a/ext/libmms/gstmms.h b/ext/libmms/gstmms.h index c92034bc..a7c7b3dd 100644 --- a/ext/libmms/gstmms.h +++ b/ext/libmms/gstmms.h @@ -18,10 +18,10 @@ G_BEGIN_DECLS #define GST_MMS(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MMS,GstMMS)) #define GST_MMS_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MMS,GstMMS)) + (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MMS,GstMMSClass)) #define GST_IS_MMS(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MMS)) -#define GST_IS_MMS_CLASS(obj) \ +#define GST_IS_MMS_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MMS)) typedef struct _GstMMS GstMMS; @@ -34,7 +34,6 @@ struct _GstMMS gchar *uri_name; gpointer connection; gpointer connection_h; - gint blocksize; }; struct _GstMMSClass -- cgit v1.2.1