diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2003-11-02 13:19:55 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2003-11-02 13:19:55 +0000 |
commit | 1b6b3af9bb408cacee54f75fd4474f60456bd7cd (patch) | |
tree | f3b1d7d1d8c590a2817da440b57a45339eb9e8f7 | |
parent | f45357b246262a664d370e3d741e5354bb8edfdb (diff) | |
download | gst-plugins-bad-1b6b3af9bb408cacee54f75fd4474f60456bd7cd.tar.gz gst-plugins-bad-1b6b3af9bb408cacee54f75fd4474f60456bd7cd.tar.bz2 gst-plugins-bad-1b6b3af9bb408cacee54f75fd4474f60456bd7cd.zip |
Use GST_ELEMENT_DETAILS for initialising GstElementDetails
Original commit message from CVS:
Use GST_ELEMENT_DETAILS for initialising GstElementDetails
-rw-r--r-- | ext/smoothwave/gstsmoothwave.c | 6 | ||||
-rw-r--r-- | gst/smoothwave/gstsmoothwave.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ext/smoothwave/gstsmoothwave.c b/ext/smoothwave/gstsmoothwave.c index 807aa98b..a113bc53 100644 --- a/ext/smoothwave/gstsmoothwave.c +++ b/ext/smoothwave/gstsmoothwave.c @@ -25,12 +25,12 @@ #include "gstsmoothwave.h" -static GstElementDetails gst_smoothwave_details = { +static GstElementDetails gst_smoothwave_details = GST_ELEMENT_DETAILS ( "Smooth waveform", "Visualization", "Fading grayscale waveform display", - "Erik Walthinsen <omega@cse.ogi.edu>", -}; + "Erik Walthinsen <omega@cse.ogi.edu>" +); /* SmoothWave signals and args */ diff --git a/gst/smoothwave/gstsmoothwave.c b/gst/smoothwave/gstsmoothwave.c index 807aa98b..a113bc53 100644 --- a/gst/smoothwave/gstsmoothwave.c +++ b/gst/smoothwave/gstsmoothwave.c @@ -25,12 +25,12 @@ #include "gstsmoothwave.h" -static GstElementDetails gst_smoothwave_details = { +static GstElementDetails gst_smoothwave_details = GST_ELEMENT_DETAILS ( "Smooth waveform", "Visualization", "Fading grayscale waveform display", - "Erik Walthinsen <omega@cse.ogi.edu>", -}; + "Erik Walthinsen <omega@cse.ogi.edu>" +); /* SmoothWave signals and args */ |