fixes for #133316, #133663 and #133528 (Stefan Kost)
authorThomas Vander Stichele <thomas@apestaart.org>
Thu, 12 Feb 2004 18:18:51 +0000 (18:18 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Thu, 12 Feb 2004 18:18:51 +0000 (18:18 +0000)
Original commit message from CVS:
fixes for #133316, #133663 and #133528 (Stefan Kost)

ChangeLog
common
gst/sine/gstsinesrc.c

index a768df7..07f8ff7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/common b/common
index 59d3c43..d7fa140 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 59d3c4334b32261908261a163b4633532293492d
+Subproject commit d7fa1407cff7d2054ba22ac6824eba4086fdd047
index 556a062..8e62788 100644 (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)