mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
gst/gst-types.defs: Added GhostPad type
Original commit message from CVS: * gst/gst-types.defs: (GhostPad): Added GhostPad type * gst/interfaces.defs: Added MixerTrackFlags, TunerChannelFlags and MixerOptions Want the rest of the poem ? ;)
This commit is contained in:
parent
b32dc34bfc
commit
7bb0ac55a2
3 changed files with 48 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2005-07-25 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
|
* gst/gst-types.defs: (GhostPad):
|
||||||
|
Added GhostPad type
|
||||||
|
* gst/interfaces.defs:
|
||||||
|
Added MixerTrackFlags, TunerChannelFlags and MixerOptions
|
||||||
|
|
||||||
|
Want the rest of the poem ? ;)
|
||||||
|
|
||||||
2005-07-23 Edward Hervey <edward@fluendo.com>
|
2005-07-23 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -51,6 +51,13 @@
|
||||||
(gtype-id "GST_TYPE_PAD")
|
(gtype-id "GST_TYPE_PAD")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(define-object GhostPad
|
||||||
|
(in-module "Gst")
|
||||||
|
(parent "GstPad")
|
||||||
|
(c-name "GstGhostPad")
|
||||||
|
(gtype-id "GST_TYPE_GHOST_PAD")
|
||||||
|
)
|
||||||
|
|
||||||
(define-object PadTemplate
|
(define-object PadTemplate
|
||||||
(in-module "Gst")
|
(in-module "Gst")
|
||||||
(parent "GstObject")
|
(parent "GstObject")
|
||||||
|
|
|
@ -32,6 +32,31 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(define-flags MixerTrackFlags
|
||||||
|
(in-module "Gst")
|
||||||
|
(c-name "GstMixerTrackFlags")
|
||||||
|
(gtype-id "GST_TYPE_MIXER_TRACK_FLAGS")
|
||||||
|
(values
|
||||||
|
'("input" "GST_MIXER_TRACK_INPUT")
|
||||||
|
'("output" "GST_MIXER_TRACK_OUTPUT")
|
||||||
|
'("mute" "GST_MIXER_TRACK_MUTE")
|
||||||
|
'("record" "GST_MIXER_TRACK_RECORD")
|
||||||
|
'("master" "GST_MIXER_TRACK_MASTER")
|
||||||
|
'("software" "GST_MIXER_TRACK_SOFTWARE")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
(define-flags TunerChannelFlags
|
||||||
|
(in-module "Gst")
|
||||||
|
(c-name "GstTunerChannelFlags")
|
||||||
|
(gtype-id "GST_TYPE_TUNER_CHANNEL_FLAGS")
|
||||||
|
(values
|
||||||
|
'("input" "GST_TUNER_CHANNEL_INPUT")
|
||||||
|
'("output" "GST_TUNER_CHANNEL_OUTPUT")
|
||||||
|
'("frequency" "GST_TUNER_CHANNEL_FREQUENCY")
|
||||||
|
'("audio" "GST_TUNER_CHANNEL_AUDIO")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
;; From /opt/gnome/include/gstreamer-0.7/gst/colorbalance/colorbalance.h
|
;; From /opt/gnome/include/gstreamer-0.7/gst/colorbalance/colorbalance.h
|
||||||
|
|
||||||
|
@ -527,6 +552,13 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(define-object MixerOptions
|
||||||
|
(in-module "Gst")
|
||||||
|
(parent "GstMixerTrack")
|
||||||
|
(c-name "GstMixerOptions")
|
||||||
|
(gtype-id "GST_TYPE_MIXER_OPTIONS")
|
||||||
|
)
|
||||||
|
|
||||||
(define-interface Navigation
|
(define-interface Navigation
|
||||||
(in-module "Gst")
|
(in-module "Gst")
|
||||||
(c-name "GstNavigation")
|
(c-name "GstNavigation")
|
||||||
|
|
Loading…
Reference in a new issue