ext/timidity/: Fix licence (both are GPL). Add element docs.

Original commit message from CVS:
* ext/timidity/gsttimidity.c:
* ext/timidity/gstwildmidi.c:
* ext/timidity/gstwildmidi.h:
Fix licence (both are GPL). Add element docs.
This commit is contained in:
Stefan Kost 2007-07-03 07:41:34 +00:00
parent 25e357f180
commit c0882012bb
4 changed files with 53 additions and 5 deletions

View file

@ -1,3 +1,10 @@
2007-07-03 Stefan Kost <ensonic@users.sf.net>
* ext/timidity/gsttimidity.c:
* ext/timidity/gstwildmidi.c:
* ext/timidity/gstwildmidi.h:
Fix licence (both are GPL). Add element docs.
2007-07-03 Stefan Kost <ensonic@users.sf.net>
* ext/musicbrainz/gsttrm.h:

View file

@ -11,7 +11,6 @@
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
@ -20,6 +19,26 @@
* Boston, MA 02111-1307, USA.
*/
/**
* SECTION:element-timidity
* @see_also: wildmidi
*
* <refsect2>
* <para>
* This element renders midi-files as audio streams using
* <ulink url="http://timidity.sourceforge.net/">Timidity</ulink>.
* </para>
* <para>
* </para>
* <title>Example pipeline</title>
* <programlisting>
* gst-launch filesrc location=song.mid ! timidity ! alsasink
* </programlisting>
* This example pipeline will parse the midi and render to raw audio which is
* played via alsa.
* </refsect2>
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
@ -816,4 +835,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"timidity",
"Timidity Plugin",
plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
plugin_init, VERSION, "GPL", "GStreamer", "http://gstreamer.net/")

View file

@ -11,7 +11,6 @@
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
@ -20,6 +19,29 @@
* Boston, MA 02111-1307, USA.
*/
/**
* SECTION:element-wildmidi
* @see_also: timidity
*
* <refsect2>
* <para>
* This element renders midi-files as audio streams using
* <ulink url="http://wildmidi.sourceforge.net//">Wildmidi</ulink>.
* It offers better sound quality compared to the timidity element. Wildmidi
* uses the same sound-patches as timidity (it tries the path in $WILDMIDI_CFG,
* $HOME/.wildmidirc and /etc/wildmidi.cfg)
* </para>
* <para>
* </para>
* <title>Example pipeline</title>
* <programlisting>
* gst-launch filesrc location=song.mid ! wildmidi ! alsasink
* </programlisting>
* This example pipeline will parse the midi and render to raw audio which is
* played via alsa.
* </refsect2>
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
@ -884,4 +906,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"wildmidi",
"Wildmidi Plugin",
plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
plugin_init, VERSION, "GPL", "GStreamer", "http://gstreamer.net/")

View file

@ -1,5 +1,5 @@
/*
* gsttimdity - timidity plugin for gstreamer
* gstwildmidi - wildmidi plugin for gstreamer
*
* Copyright 2007 Wouter Paesen <wouter@blue-gate.be>
*