From ecfac6c0f421c3643219791f5be9f55981551506 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Sun, 2 Nov 2003 12:51:01 +0000 Subject: Use the GST_ELEMENT_DETAILS for initialising GstElementDetails Original commit message from CVS: Use the GST_ELEMENT_DETAILS for initialising GstElementDetails --- ext/dv/gstdvdec.c | 6 +++--- ext/raw1394/gstdv1394src.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'ext') 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 \n" - "Wim Taymans ", -}; + "Wim Taymans " +); /* 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 \n" - "Daniel Fischer ", -}; + "Daniel Fischer " +); #if 0 static GstPadTemplate* -- cgit