From: Stefan Kost Date: Tue, 31 May 2011 11:42:55 +0000 (+0300) Subject: scopes: fix elements descriptions X-Git-Tag: 1.19.3~507^2~16050^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92d36cdbfe1320ccb21e8e564c79c3302de1846d;p=platform%2Fupstream%2Fgstreamer.git scopes: fix elements descriptions --- diff --git a/gst/scopes/gstspectrascope.c b/gst/scopes/gstspectrascope.c index c1879b68e2..2335e9f6fd 100644 --- a/gst/scopes/gstspectrascope.c +++ b/gst/scopes/gstspectrascope.c @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) <2011> Stefan Kost * - * gstspectrascope.c: simple oscilloscope + * gstspectrascope.c: frequency spectrum scope * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -71,9 +71,9 @@ gst_spectra_scope_base_init (gpointer g_class) { GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); - gst_element_class_set_details_simple (element_class, "Waveform oscilloscope", - "Visualization", - "Simple waveform oscilloscope", "Stefan Kost "); + gst_element_class_set_details_simple (element_class, + "Frequency spectrum scope", "Visualization", + "Simple frequency spectrum scope", "Stefan Kost "); gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&gst_spectra_scope_src_template)); diff --git a/gst/scopes/gstsynaescope.c b/gst/scopes/gstsynaescope.c index 8dd823edf4..674b07e292 100644 --- a/gst/scopes/gstsynaescope.c +++ b/gst/scopes/gstsynaescope.c @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) <2011> Stefan Kost * - * gstsynaescope.c: simple oscilloscope + * gstsynaescope.c: frequency spectrum scope * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -70,9 +70,10 @@ gst_synae_scope_base_init (gpointer g_class) { GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); - gst_element_class_set_details_simple (element_class, "Waveform oscilloscope", + gst_element_class_set_details_simple (element_class, "Synaescope", "Visualization", - "Simple waveform oscilloscope", "Stefan Kost "); + "Creates video visualizations of audio input, using stereo and pitch information", + "Stefan Kost "); gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&gst_synae_scope_src_template));