summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2007-05-21 14:01:16 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2007-05-21 14:01:16 +0000
commit06ff42e49f40953b5d61930ce8cdb8bf073f54e7 (patch)
tree79ac2815255576e14b53f3f40a641df5680e3d55
parent9953480464f46cc84d074bbe4781cdbe157ad8ff (diff)
downloadgst-plugins-bad-06ff42e49f40953b5d61930ce8cdb8bf073f54e7.tar.gz
gst-plugins-bad-06ff42e49f40953b5d61930ce8cdb8bf073f54e7.tar.bz2
gst-plugins-bad-06ff42e49f40953b5d61930ce8cdb8bf073f54e7.zip
ChangeLog: ChangeLog surgery. gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN, _GstIirEqualizerBa...
Original commit message from CVS: * ChangeLog: ChangeLog surgery. * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN, _GstIirEqualizerBand, object, _GstIirEqualizerBandClass, parent_class, gst_iir_equalizer_band_set_property, gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type, gst_iir_equalizer_child_proxy_get_child_by_index, gst_iir_equalizer_child_proxy_get_children_count, gst_iir_equalizer_child_proxy_interface_init, setup_filter, gst_iir_equalizer_compute_frequencies, plugin_init): * tests/icles/equalizer-test.c: Add fixme and comment for example.
-rw-r--r--ChangeLog36
-rw-r--r--gst/equalizer/gstiirequalizer.c2
-rw-r--r--tests/icles/equalizer-test.c5
3 files changed, 22 insertions, 21 deletions
diff --git a/ChangeLog b/ChangeLog
index e1cafb9a..89e0eba0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,20 @@
2007-05-21 Stefan Kost <ensonic@users.sf.net>
+ * ChangeLog:
+ ChangeLog surgery.
+ * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
+ _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
+ parent_class, gst_iir_equalizer_band_set_property,
+ gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
+ gst_iir_equalizer_child_proxy_get_child_by_index,
+ gst_iir_equalizer_child_proxy_get_children_count,
+ gst_iir_equalizer_child_proxy_interface_init, setup_filter,
+ gst_iir_equalizer_compute_frequencies, plugin_init):
+ * tests/icles/equalizer-test.c:
+ Add fixme and comment for example.
+
+2007-05-21 Stefan Kost <ensonic@users.sf.net>
+
* gst/spectrum/gstspectrum.c (gst_spectrum_set_property,
gst_spectrum_event, gst_spectrum_transform_ip):
Use lock to protect from concurrent access.
@@ -12,27 +27,6 @@
2007-05-21 Sebastian Dröge <slomo@circular-chaos.org>
- reviewed by: <delete if not using a buddy>
-
- * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_property):
- * po/af.po:
- * po/az.po:
- * po/cs.po:
- * po/da.po:
- * po/en_GB.po:
- * po/hu.po:
- * po/it.po:
- * po/nb.po:
- * po/nl.po:
- * po/or.po:
- * po/sq.po:
- * po/sr.po:
- * po/sv.po:
- * po/uk.po:
- * po/vi.po:
-
-2007-05-21 Sebastian Dröge <slomo@circular-chaos.org>
-
* ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
(gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
(gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
diff --git a/gst/equalizer/gstiirequalizer.c b/gst/equalizer/gstiirequalizer.c
index 659aa182..db29adec 100644
--- a/gst/equalizer/gstiirequalizer.c
+++ b/gst/equalizer/gstiirequalizer.c
@@ -389,6 +389,8 @@ gst_iir_equalizer_compute_frequencies (GstIirEqualizer * equ, guint new_count)
/* set center frequencies and name band objects
* FIXME: arg! we can't change the name of parented objects :(
* application should read band->freq
+ * FIXME: the code that calculates the center-frequencies for the bands should
+ * take the number of bands into account, when chooding the lowest frequency
*/
equ->bands[0]->freq = LOWEST_FREQ;
GST_DEBUG ("band[ 0] = '%lf'", equ->bands[0]->freq);
diff --git a/tests/icles/equalizer-test.c b/tests/icles/equalizer-test.c
index 8a706993..d45146a6 100644
--- a/tests/icles/equalizer-test.c
+++ b/tests/icles/equalizer-test.c
@@ -17,6 +17,11 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Will tests the equalizer by fading all bands in and out one by one and
+ * finaly all together.
+ */
+
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif