summaryrefslogtreecommitdiff
path: root/ext/libmms/gstmms.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-03-10 13:49:23 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-03-10 13:49:23 +0000
commite276fe38badbf6f2e7b29ffa3ff0aab0bf443b8f (patch)
tree72b1baed26fbe7f7914eb43d8523c2d0ed4b3b82 /ext/libmms/gstmms.h
parent212c802ce21fc247d8fb1f59dc84c7ee9435ebb7 (diff)
downloadgstreamer-plugins-bad-e276fe38badbf6f2e7b29ffa3ff0aab0bf443b8f.tar.gz
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.
Diffstat (limited to 'ext/libmms/gstmms.h')
-rw-r--r--ext/libmms/gstmms.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/libmms/gstmms.h b/ext/libmms/gstmms.h
index c92034bc7..a7c7b3dd3 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