gst/interfaces.defs: Add proper fiels to GstTunerNorm. Also remove parent property from all interfaces.

Original commit message from CVS:
* gst/interfaces.defs: Add proper fiels to GstTunerNorm. Also
remove parent property from all interfaces.
This commit is contained in:
Johan Dahlin 2004-10-04 10:45:46 +00:00
parent 55a8ec7633
commit 25bb8d5012
2 changed files with 11 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2004-10-04 Johan Dahlin <johan@gnome.org>
* gst/interfaces.defs: Add proper fiels to GstTunerNorm. Also
remove parent property from all interfaces.
2004-09-29 Johan Dahlin <johan@gnome.org> 2004-09-29 Johan Dahlin <johan@gnome.org>
* gst/gstmodule.c (python_do_pending_calls): Use * gst/gstmodule.c (python_do_pending_calls): Use

View file

@ -473,9 +473,8 @@
(gtype-id "GST_TYPE_COLOR_BALANCE") (gtype-id "GST_TYPE_COLOR_BALANCE")
) )
(define-object ColorBalanceChannel (define-interface ColorBalanceChannel
(in-module "Gst") (in-module "Gst")
(parent "GstObject")
(c-name "GstColorBalanceChannel") (c-name "GstColorBalanceChannel")
(gtype-id "GST_TYPE_COLOR_BALANCE_CHANNEL") (gtype-id "GST_TYPE_COLOR_BALANCE_CHANNEL")
) )
@ -489,9 +488,8 @@
) )
) )
(define-object MixerTrack (define-interface MixerTrack
(in-module "Gst") (in-module "Gst")
(parent "GstObject")
(c-name "GstMixerTrack") (c-name "GstMixerTrack")
(gtype-id "GST_TYPE_MIXER_TRACK") (gtype-id "GST_TYPE_MIXER_TRACK")
(fields (fields
@ -521,9 +519,8 @@
(gtype-id "GST_TYPE_TUNER") (gtype-id "GST_TYPE_TUNER")
) )
(define-object TunerChannel (define-interface TunerChannel
(in-module "Gst") (in-module "Gst")
(parent "GstObject")
(c-name "GstTunerChannel") (c-name "GstTunerChannel")
(gtype-id "GST_TYPE_TUNER_CHANNEL") (gtype-id "GST_TYPE_TUNER_CHANNEL")
(fields (fields
@ -536,11 +533,11 @@
'("gint" "max_signal")) '("gint" "max_signal"))
) )
(define-object TunerNorm (define-interface TunerNorm
(in-module "Gst") (in-module "Gst")
(parent "GstObject")
(c-name "GstTunerNorm") (c-name "GstTunerNorm")
(gtype-id "GST_TYPE_TUNER_NORM") (gtype-id "GST_TYPE_TUNER_NORM")
(fields
'("gchar*" "label") '("gchar*" "label")
'("gfloat" "fps") '("gfloat" "fps"))
) )