diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-18 17:30:26 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-18 22:46:41 +0100 |
commit | 775c7584fdad53053ae5b22bb19074cc6022ee98 (patch) | |
tree | 149c7daf4efd3ecaf17a179949e20b44347859ab /sys/dshowsrcwrapper | |
parent | 5258d372be503da09fa21fbde28afe619bc0cdc1 (diff) | |
download | gstreamer-plugins-bad-775c7584fdad53053ae5b22bb19074cc6022ee98.tar.gz |
gst_element_class_set_details => gst_element_class_set_details_simple
Diffstat (limited to 'sys/dshowsrcwrapper')
-rw-r--r-- | sys/dshowsrcwrapper/gstdshowaudiosrc.cpp | 11 | ||||
-rw-r--r-- | sys/dshowsrcwrapper/gstdshowvideosrc.cpp | 11 |
2 files changed, 8 insertions, 14 deletions
diff --git a/sys/dshowsrcwrapper/gstdshowaudiosrc.cpp b/sys/dshowsrcwrapper/gstdshowaudiosrc.cpp index bdf3c47b3..e7fbadaab 100644 --- a/sys/dshowsrcwrapper/gstdshowaudiosrc.cpp +++ b/sys/dshowsrcwrapper/gstdshowaudiosrc.cpp @@ -25,12 +25,6 @@ #include "gstdshowaudiosrc.h" -static const GstElementDetails gst_dshowaudiosrc_details = -GST_ELEMENT_DETAILS ("Directshow audio capture source", - "Source/Audio", - "Receive data from a directshow audio capture graph", - "Sebastien Moutte <sebastien@moutte.net>"); - GST_DEBUG_CATEGORY_STATIC (dshowaudiosrc_debug); #define GST_CAT_DEFAULT dshowaudiosrc_debug @@ -127,7 +121,10 @@ gst_dshowaudiosrc_base_init (gpointer klass) gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&src_template)); - gst_element_class_set_details (element_class, &gst_dshowaudiosrc_details); + gst_element_class_set_details_simple (element_class, + "Directshow audio capture source", "Source/Audio", + "Receive data from a directshow audio capture graph", + "Sebastien Moutte <sebastien@moutte.net>"); } static void diff --git a/sys/dshowsrcwrapper/gstdshowvideosrc.cpp b/sys/dshowsrcwrapper/gstdshowvideosrc.cpp index ef722c218..fd28ca657 100644 --- a/sys/dshowsrcwrapper/gstdshowvideosrc.cpp +++ b/sys/dshowsrcwrapper/gstdshowvideosrc.cpp @@ -28,12 +28,6 @@ #include <gst/video/video.h> -static const GstElementDetails gst_dshowvideosrc_details = -GST_ELEMENT_DETAILS ("DirectShow video capture source", - "Source/Video", - "Receive data from a directshow video capture graph", - "Sebastien Moutte <sebastien@moutte.net>"); - GST_DEBUG_CATEGORY_STATIC (dshowvideosrc_debug); #define GST_CAT_DEFAULT dshowvideosrc_debug @@ -134,7 +128,10 @@ gst_dshowvideosrc_base_init (gpointer klass) gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&src_template)); - gst_element_class_set_details (element_class, &gst_dshowvideosrc_details); + gst_element_class_set_details_simple (element_class, + "DirectShow video capture source", "Source/Video", + "Receive data from a directshow video capture graph", + "Sebastien Moutte <sebastien@moutte.net>"); } static void |