From 9c32211ad1c1556e9ff1f2bd1e54c36429814bad Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 12 Feb 2004 18:18:51 +0000 Subject: [PATCH] fixes for #133316, #133663 and #133528 (Stefan Kost) Original commit message from CVS: fixes for #133316, #133663 and #133528 (Stefan Kost) --- ChangeLog | 12 ++++++++++++ common | 2 +- gst/sine/gstsinesrc.c | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a768df7..07f8ff7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2004-02-12 Thomas Vander Stichele + + * 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 Convert a few inner loops to use liboil. This is currently diff --git a/common b/common index 59d3c43..d7fa140 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 59d3c4334b32261908261a163b4633532293492d +Subproject commit d7fa1407cff7d2054ba22ac6824eba4086fdd047 diff --git a/gst/sine/gstsinesrc.c b/gst/sine/gstsinesrc.c index 556a062..8e62788 100644 --- a/gst/sine/gstsinesrc.c +++ b/gst/sine/gstsinesrc.c @@ -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) -- 2.7.4