Properly integrate Windows specific plugins bindings into the build system

This commit is contained in:
Sebastian Dröge 2010-02-14 10:32:01 +01:00
parent 7509d26528
commit 890b0d64b1
3 changed files with 158 additions and 1 deletions

View file

@ -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

View file

@ -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);
}

View file

@ -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