mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
gst/equalizer/gstiirequalizer10bands.c: A 10 band EQ should be initialized to 1 bands and not to 3.
Original commit message from CVS: * gst/equalizer/gstiirequalizer10bands.c: (gst_iir_equalizer_10bands_init): A 10 band EQ should be initialized to 1 bands and not to 3.
This commit is contained in:
parent
1f7755917a
commit
b883c42b46
2 changed files with 24 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-03-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/equalizer/gstiirequalizer10bands.c:
|
||||
(gst_iir_equalizer_10bands_init):
|
||||
A 10 band EQ should be initialized to 1 bands and not to 3.
|
||||
|
||||
2007-03-15 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -17,6 +17,23 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:element-equalizer-10bands
|
||||
*
|
||||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* <para>
|
||||
* The 10 band equalizer element changes the frequency spectrum of the audio data.
|
||||
* </para>
|
||||
* <para>
|
||||
* <programlisting>
|
||||
* gst-launch filesrc location=song.ogg ! oggdemux ! vorbisdec ! audioconvert ! equalizer-10bands band2=-1.0 ! alsasink
|
||||
* </programlisting>
|
||||
* This lowers the volume of the 3rd band which is at 93 Hz by FIXME db.
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
/*
|
||||
*
|
||||
* gst-launch filesrc location=song.ogg ! oggdemux ! vorbisdec ! audioconvert ! equalizer-10bands band1=-1.0 ! alsasink
|
||||
|
@ -126,7 +143,7 @@ gst_iir_equalizer_10bands_init (GstIirEqualizer10Bands * equ_n,
|
|||
{
|
||||
GstIirEqualizer *equ = GST_IIR_EQUALIZER (equ_n);
|
||||
|
||||
gst_iir_equalizer_compute_frequencies (equ, 3);
|
||||
gst_iir_equalizer_compute_frequencies (equ, 10);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue