summaryrefslogtreecommitdiff
path: root/ext/soundtouch
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-09-14 17:08:49 +0200
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2012-09-14 17:27:49 +0200
commit578861abeab76704b98d377f69e136f8431dc4ab (patch)
tree56acc109a822cc72f9709d30e99c049501ac5404 /ext/soundtouch
parentf2191d403c47dda65836e72686a94a94f2dcc0bc (diff)
downloadgstreamer-plugins-bad-578861abeab76704b98d377f69e136f8431dc4ab.tar.gz
replace gst_element_class_set_details_simple with gst_element_class_set_metadata
Diffstat (limited to 'ext/soundtouch')
-rw-r--r--ext/soundtouch/gstbpmdetect.cc2
-rw-r--r--ext/soundtouch/gstpitch.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/soundtouch/gstbpmdetect.cc b/ext/soundtouch/gstbpmdetect.cc
index 41edba5b5..fec45c960 100644
--- a/ext/soundtouch/gstbpmdetect.cc
+++ b/ext/soundtouch/gstbpmdetect.cc
@@ -87,7 +87,7 @@ gst_bpm_detect_class_init (GstBPMDetectClass * klass)
gobject_class->finalize = gst_bpm_detect_finalize;
- gst_element_class_set_details_simple (element_class, "BPM Detector",
+ gst_element_class_set_metadata (element_class, "BPM Detector",
"Filter/Analyzer/Audio", "Detect the BPM of an audio stream",
"Sebastian Dröge <slomo@circular-chaos.org>");
diff --git a/ext/soundtouch/gstpitch.cc b/ext/soundtouch/gstpitch.cc
index ed76cd27a..46526838c 100644
--- a/ext/soundtouch/gstpitch.cc
+++ b/ext/soundtouch/gstpitch.cc
@@ -144,7 +144,7 @@ gst_pitch_class_init (GstPitchClass * klass)
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&gst_pitch_sink_template));
- gst_element_class_set_details_simple (element_class, "Pitch controller",
+ gst_element_class_set_metadata (element_class, "Pitch controller",
"Filter/Effect/Audio", "Control the pitch of an audio stream",
"Wouter Paesen <wouter@blue-gate.be>");
}