mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
Original commit message from CVS: fixes for #133316, #133663 and #133528 (Stefan Kost)
This commit is contained in:
parent
ad82e4a5de
commit
9c32211ad1
3 changed files with 15 additions and 3 deletions
12
ChangeLog
12
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
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 59d3c4334b32261908261a163b4633532293492d
|
||||
Subproject commit d7fa1407cff7d2054ba22ac6824eba4086fdd047
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue