diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2003-11-02 12:51:01 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2003-11-02 12:51:01 +0000 |
commit | ecfac6c0f421c3643219791f5be9f55981551506 (patch) | |
tree | bb16f518199dc8bc679c1a516b1a78a8812b6c5f /ext | |
parent | 9e42080f8d894ae130b32cb34143f7df31e8ce10 (diff) |
Use the GST_ELEMENT_DETAILS for initialising GstElementDetails
Original commit message from CVS:
Use the GST_ELEMENT_DETAILS for initialising GstElementDetails
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dv/gstdvdec.c | 6 | ||||
-rw-r--r-- | ext/raw1394/gstdv1394src.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 3e0aa955..d201e203 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -35,13 +35,13 @@ /* The ElementDetails structure gives a human-readable description * of the plugin, as well as author and version data. */ -static GstElementDetails dvdec_details = { +static GstElementDetails dvdec_details = GST_ELEMENT_DETAILS ( "DV (smpte314) decoder plugin", "Codec/Video/Decoder", "Uses libdv to decode DV video (libdv.sourceforge.net)", "Erik Walthinsen <omega@cse.ogi.edu>\n" - "Wim Taymans <wim.taymans@tvd.be>", -}; + "Wim Taymans <wim.taymans@tvd.be>" +); /* These are the signals that this element can fire. They are zero- diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c index 707fde6d..3157d879 100644 --- a/ext/raw1394/gstdv1394src.c +++ b/ext/raw1394/gstdv1394src.c @@ -40,13 +40,13 @@ enum { ARG_DROP_INCOMPLETE, }; -static GstElementDetails gst_dv1394src_details = { +static GstElementDetails gst_dv1394src_details = GST_ELEMENT_DETAILS ( "Firewire (1394) DV Source", "Source/Video", "Source for DV video data from firewire port", "Erik Walthinsen <omega@temple-baptist.com>\n" - "Daniel Fischer <dan@f3c.com>", -}; + "Daniel Fischer <dan@f3c.com>" +); #if 0 static GstPadTemplate* |