diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2005-11-29 02:55:18 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2005-11-29 02:55:18 +0000 |
commit | 85d3362e3426775100ac58890709f15bbabd49f3 (patch) | |
tree | 34653e7583b158734fbe4f8b7244185758b72197 /ext/libmms/gstmms.h | |
parent | 07e2ec5f9574095e71c2208779c719574bb135ab (diff) | |
download | gst-plugins-bad-85d3362e3426775100ac58890709f15bbabd49f3.tar.gz gst-plugins-bad-85d3362e3426775100ac58890709f15bbabd49f3.tar.bz2 gst-plugins-bad-85d3362e3426775100ac58890709f15bbabd49f3.zip |
libmm ported to 0.9. It works fine, but print some error messages. I'll fix them soon. Tested with mmssrc location=m...
Original commit message from CVS:
libmm ported to 0.9. It works fine, but print some error messages. I'll fix them soon. Tested with mmssrc location=mms:// ! filesink.
Diffstat (limited to 'ext/libmms/gstmms.h')
-rw-r--r-- | ext/libmms/gstmms.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/libmms/gstmms.h b/ext/libmms/gstmms.h index 13954f14..114390d1 100644 --- a/ext/libmms/gstmms.h +++ b/ext/libmms/gstmms.h @@ -7,6 +7,7 @@ #include <gst/gst.h> #include <libmms/mms.h> +#include <gst/base/gstpushsrc.h> G_BEGIN_DECLS @@ -27,9 +28,7 @@ typedef struct _GstMMSClass GstMMSClass; struct _GstMMS { - GstElement element; - - GstPad *srcpad; + GstPushSrc parent; gchar *uri_name; gpointer connection; @@ -38,7 +37,7 @@ struct _GstMMS struct _GstMMSClass { - GstElementClass parent_class; + GstPushSrcClass parent_class; }; GType gst_mms_get_type (void); |