[gst-cvs] gstreamer-sharp: Properly integrate Windows specific plugins bindings into the build system
Sebastian Dröge
slomo at kemper.freedesktop.org
Sun Feb 14 01:32:23 PST 2010
Module: gstreamer-sharp
Branch: master
Commit: 890b0d64b1abf7d951597a34950c50b35a4332e8
URL: http://cgit.freedesktop.org/gstreamer/gstreamer-sharp/commit/?id=890b0d64b1abf7d951597a34950c50b35a4332e8
Author: Sebastian Dröge <sebastian.droege at collabora.co.uk>
Date: Sun Feb 14 10:32:01 2010 +0100
Properly integrate Windows specific plugins bindings into the build system
---
configure.ac | 2 +
elementgen/interfaces/GstMixer.cs | 143 +++++++++++++++++++++++++++++++++++++
gstreamer-sharp/Makefile.am | 14 ++++-
3 files changed, 158 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 15f4952..89e3b3e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -199,6 +199,8 @@ gstreamer-sharp/AssemblyInfo.cs
gstreamer-sharp/gstreamer-sharp.dll.config
gstreamer-sharp/coreplugins/Makefile
gstreamer-sharp/baseplugins/Makefile
+gstreamer-sharp/goodplugins/Makefile
+gstreamer-sharp/badplugins/Makefile
gstreamer-sharp/glue/Makefile
doc/Makefile
tests/Makefile
diff --git a/elementgen/interfaces/GstMixer.cs b/elementgen/interfaces/GstMixer.cs
new file mode 100644
index 0000000..13e5299
--- /dev/null
+++ b/elementgen/interfaces/GstMixer.cs
@@ -0,0 +1,143 @@
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_volume_changed (IntPtr raw, IntPtr track, IntPtr volumes);
+
+public void VolumeChanged (Gst.Interfaces.MixerTrack track, int[] volumes) {
+ if (track == null)
+ return;
+
+ if (volumes.Length != track.NumChannels)
+ throw new ArgumentOutOfRangeException ();
+
+ IntPtr native_volumes = Gst.GLib.Marshaller.Malloc ( (ulong) (4 * track.NumChannels));
+ Marshal.Copy (volumes, 0, native_volumes, track.NumChannels);
+ gst_mixer_volume_changed (Handle, track.Handle, native_volumes);
+ Gst.GLib.Marshaller.Free (native_volumes);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern IntPtr gst_mixer_list_tracks (IntPtr raw);
+
+public Gst.Interfaces.MixerTrack[] ListTracks() {
+ IntPtr raw_ret = gst_mixer_list_tracks (Handle);
+ Gst.Interfaces.MixerTrack[] ret = (Gst.Interfaces.MixerTrack[]) Gst.GLib.Marshaller.ListPtrToArray (raw_ret, typeof (Gst.GLib.List), false, false, typeof (Gst.Interfaces.MixerTrack));
+ return ret;
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_set_option (IntPtr raw, IntPtr opts, IntPtr value);
+
+public void SetOption (Gst.Interfaces.MixerOptions opts, string value) {
+ gst_mixer_set_option (Handle, opts == null ? IntPtr.Zero : opts.Handle, Gst.GLib.Marshaller.StringToPtrGStrdup (value));
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_set_volume (IntPtr raw, IntPtr track, IntPtr volumes);
+
+public void SetVolume (Gst.Interfaces.MixerTrack track, int[] volumes) {
+ if (track == null)
+ return;
+
+ if (volumes.Length != track.NumChannels)
+ throw new ArgumentOutOfRangeException ();
+ IntPtr volumes_native = Gst.GLib.Marshaller.Malloc ( (ulong) (4 * track.NumChannels));
+ Marshal.Copy (volumes, 0, volumes_native, track.NumChannels);
+ gst_mixer_set_volume (Handle, track.Handle, volumes_native);
+ Gst.GLib.Marshaller.Free (volumes_native);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern int gst_mixer_get_mixer_type (IntPtr raw);
+
+public Gst.Interfaces.MixerType MixerType {
+ get {
+ int raw_ret = gst_mixer_get_mixer_type (Handle);
+ Gst.Interfaces.MixerType ret = (Gst.Interfaces.MixerType) raw_ret;
+ return ret;
+ }
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_option_changed (IntPtr raw, IntPtr opts, IntPtr value);
+
+public void OptionChanged (Gst.Interfaces.MixerOptions opts, string value) {
+ gst_mixer_option_changed (Handle, opts == null ? IntPtr.Zero : opts.Handle, Gst.GLib.Marshaller.StringToPtrGStrdup (value));
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern IntPtr gst_mixer_get_option (IntPtr raw, IntPtr opts);
+
+public string GetOption (Gst.Interfaces.MixerOptions opts) {
+ IntPtr raw_ret = gst_mixer_get_option (Handle, opts == null ? IntPtr.Zero : opts.Handle);
+ string ret = Gst.GLib.Marshaller.Utf8PtrToString (raw_ret);
+ return ret;
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_set_record (IntPtr raw, IntPtr track, bool record);
+
+public void SetRecord (Gst.Interfaces.MixerTrack track, bool record) {
+ gst_mixer_set_record (Handle, track == null ? IntPtr.Zero : track.Handle, record);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_options_list_changed (IntPtr raw, IntPtr opts);
+
+public void ListChanged (Gst.Interfaces.MixerOptions opts) {
+ gst_mixer_options_list_changed (Handle, opts == null ? IntPtr.Zero : opts.Handle);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_record_toggled (IntPtr raw, IntPtr track, bool record);
+
+public void RecordToggled (Gst.Interfaces.MixerTrack track, bool record) {
+ gst_mixer_record_toggled (Handle, track == null ? IntPtr.Zero : track.Handle, record);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_mute_toggled (IntPtr raw, IntPtr track, bool mute);
+
+public void MuteToggled (Gst.Interfaces.MixerTrack track, bool mute) {
+ gst_mixer_mute_toggled (Handle, track == null ? IntPtr.Zero : track.Handle, mute);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_get_volume (IntPtr raw, IntPtr track, ref IntPtr volumes);
+
+public int[] GetVolume (Gst.Interfaces.MixerTrack track) {
+ if (track == null)
+ return null;
+
+ IntPtr native_volumes = Gst.GLib.Marshaller.Malloc ( (ulong) (4 * track.NumChannels));
+ gst_mixer_get_volume (Handle, track.Handle, ref native_volumes);
+
+ int[] volumes = new int[track.NumChannels];
+ Marshal.Copy (native_volumes, volumes, 0, track.NumChannels);
+ Gst.GLib.Marshaller.Free (native_volumes);
+ return volumes;
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern int gst_mixer_get_mixer_flags (IntPtr raw);
+
+public Gst.Interfaces.MixerFlags MixerFlags {
+ get {
+ int raw_ret = gst_mixer_get_mixer_flags (Handle);
+ Gst.Interfaces.MixerFlags ret = (Gst.Interfaces.MixerFlags) raw_ret;
+ return ret;
+ }
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_mixer_changed (IntPtr raw);
+
+public void MixerChanged() {
+ gst_mixer_mixer_changed (Handle);
+}
+
+[DllImport ("libgstinterfaces-0.10.dll", CallingConvention = CallingConvention.Cdecl) ]
+static extern void gst_mixer_set_mute (IntPtr raw, IntPtr track, bool mute);
+
+public void SetMute (Gst.Interfaces.MixerTrack track, bool mute) {
+ gst_mixer_set_mute (Handle, track == null ? IntPtr.Zero : track.Handle, mute);
+}
+
diff --git a/gstreamer-sharp/Makefile.am b/gstreamer-sharp/Makefile.am
index 4836ed5..150a46e 100644
--- a/gstreamer-sharp/Makefile.am
+++ b/gstreamer-sharp/Makefile.am
@@ -122,7 +122,9 @@ customs = \
MissingPluginMessage.cs
plugin_csfiles = $(builddir)/coreplugins/generated/*.cs \
- $(builddir)/baseplugins/generated/*.cs
+ $(builddir)/baseplugins/generated/*.cs \
+ $(builddir)/goodplugins/generated/*.cs \
+ $(builddir)/badplugins/generated/*.cs
build_customs = $(addprefix $(srcdir)/, $(customs))
@@ -159,6 +161,14 @@ baseplugins/generated/*.cs: $(API) $(builddir)/baseplugins/generated
baseplugins/generated: $(API) $(srcdir)/baseplugins/*.metadata $(srcdir)/baseplugins/inspect/*.raw
$(MAKE) -C baseplugins
+goodplugins/generated/*.cs: $(API) $(builddir)/goodplugins/generated
+goodplugins/generated: $(API) $(srcdir)/goodplugins/inspect/*.raw
+ $(MAKE) -C goodplugins
+
+badplugins/generated/*.cs: $(API) $(builddir)/badplugins/generated
+badplugins/generated: $(API) $(srcdir)/badplugins/inspect/*.raw
+ $(MAKE) -C badplugins
+
$(KEYFILE): $(top_srcdir)/gstreamer-sharp.snk
cp $(top_srcdir)/gstreamer-sharp.snk .
@@ -168,4 +178,6 @@ $(ASSEMBLY): $(build_sources) generated-stamp $(KEYFILE) $(plugin_csfiles)
plugins-update:
$(MAKE) -C coreplugins plugins-update
$(MAKE) -C baseplugins plugins-update
+ $(MAKE) -C goodplugins plugins-update
+ $(MAKE) -C badplugins plugins-update
More information about the Gstreamer-commits
mailing list