mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
scopes: fix elements descriptions
This commit is contained in:
parent
7cee23a419
commit
92d36cdbfe
2 changed files with 8 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
/* GStreamer
|
/* GStreamer
|
||||||
* Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
|
* Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
|
||||||
*
|
*
|
||||||
* gstspectrascope.c: simple oscilloscope
|
* gstspectrascope.c: frequency spectrum scope
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* 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);
|
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,
|
||||||
"Visualization",
|
"Frequency spectrum scope", "Visualization",
|
||||||
"Simple waveform oscilloscope", "Stefan Kost <ensonic@users.sf.net>");
|
"Simple frequency spectrum scope", "Stefan Kost <ensonic@users.sf.net>");
|
||||||
|
|
||||||
gst_element_class_add_pad_template (element_class,
|
gst_element_class_add_pad_template (element_class,
|
||||||
gst_static_pad_template_get (&gst_spectra_scope_src_template));
|
gst_static_pad_template_get (&gst_spectra_scope_src_template));
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* GStreamer
|
/* GStreamer
|
||||||
* Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
|
* Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
|
||||||
*
|
*
|
||||||
* gstsynaescope.c: simple oscilloscope
|
* gstsynaescope.c: frequency spectrum scope
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* 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);
|
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",
|
"Visualization",
|
||||||
"Simple waveform oscilloscope", "Stefan Kost <ensonic@users.sf.net>");
|
"Creates video visualizations of audio input, using stereo and pitch information",
|
||||||
|
"Stefan Kost <ensonic@users.sf.net>");
|
||||||
|
|
||||||
gst_element_class_add_pad_template (element_class,
|
gst_element_class_add_pad_template (element_class,
|
||||||
gst_static_pad_template_get (&gst_synae_scope_src_template));
|
gst_static_pad_template_get (&gst_synae_scope_src_template));
|
||||||
|
|
Loading…
Reference in a new issue