diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2003-11-02 12:23:26 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2003-11-02 12:23:26 +0000 |
commit | 98b609758da1227cf00746b7267e23972cf1c0c3 (patch) | |
tree | 76939c569fdb41aabc043411aabc99b154ff66b4 | |
parent | 8cf23985358eab8d7b6db7115387474268ffe384 (diff) | |
download | gst-plugins-bad-98b609758da1227cf00746b7267e23972cf1c0c3.tar.gz gst-plugins-bad-98b609758da1227cf00746b7267e23972cf1c0c3.tar.bz2 gst-plugins-bad-98b609758da1227cf00746b7267e23972cf1c0c3.zip |
Use GST_ELEMENT_DETAILS macro to initialise the structure
Original commit message from CVS:
Use GST_ELEMENT_DETAILS macro to initialise the structure
-rw-r--r-- | gst/deinterlace/gstdeinterlace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c index 27a112fc..9b1b512f 100644 --- a/gst/deinterlace/gstdeinterlace.c +++ b/gst/deinterlace/gstdeinterlace.c @@ -27,12 +27,12 @@ #include "gstdeinterlace.h" /* elementfactory information */ -static GstElementDetails deinterlace_details = { +static GstElementDetails deinterlace_details = GST_ELEMENT_DETAILS ( "Deinterlace", "Filter/Video", "Deinterlace video", "Wim Taymans <wim.taymans@chello.be>" -}; +); /* Filter signals and args */ |