fixes for #133316, #133663 and #133528 (Stefan Kost)

Original commit message from CVS:
fixes for #133316, #133663 and #133528 (Stefan Kost)
This commit is contained in:
Thomas Vander Stichele 2004-02-12 18:18:51 +00:00
parent ad82e4a5de
commit 9c32211ad1
3 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,15 @@
2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
* ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
classify LADSPA plugins based on number of src/sink pads
(#133663, Stefan Kost)
* gst/sine/gstsinesrc.c: (gst_sinesrc_init):
fix dparams registration
(#133528, Stefan Kost)
* gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
fix use of isprint and use g_ascii_isprint instead
(#133316, Stefan Kost)
2004-02-11 David Schleef <ds@schleef.org>
Convert a few inner loops to use liboil. This is currently

2
common

@ -1 +1 @@
Subproject commit 59d3c4334b32261908261a163b4633532293492d
Subproject commit d7fa1407cff7d2054ba22ac6824eba4086fdd047

View file

@ -195,7 +195,7 @@ gst_sinesrc_init (GstSineSrc *src)
gst_dpman_add_required_dparam_callback (
src->dpman,
g_param_spec_double("freq","Frequency (Hz)","Frequency of the tone",
g_param_spec_float("freq","Frequency (Hz)","Frequency of the tone",
10.0, 10000.0, 350.0, G_PARAM_READWRITE),
"hertz",
gst_sinesrc_update_freq,
@ -204,7 +204,7 @@ gst_sinesrc_init (GstSineSrc *src)
gst_dpman_add_required_dparam_direct (
src->dpman,
g_param_spec_double("volume","Volume","Volume of the tone",
g_param_spec_float("volume","Volume","Volume of the tone",
0.0, 1.0, 0.8, G_PARAM_READWRITE),
"scalar",
&(src->volume)