Aaron Bockover b94528f8e7 Initial import of the sleek new gstreamer-sharp, a massive WIP
git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@60875 e3ebcda4-bce8-0310-ba0a-eca2169e7518
2006-05-19 19:24:35 +00:00

43 lines
757 B
C#

namespace Gst
{
using System;
using System.Collections;
using System.Runtime.InteropServices;
using Gst;
public class PlayBin : Pipeline {
[Obsolete]
protected PlayBin(GLib.GType gtype) : base(gtype) {}
public PlayBin(IntPtr raw) : base(raw) {}
[GLib.Property ("uri")]
public string Uri {
get {
GLib.Value val = GetProperty ("uri");
string ret = val.Val as string;
val.Dispose ();
return ret;
}
set {
GLib.Value val = new GLib.Value (value);
SetProperty ("uri", val);
val.Dispose ();
}
}
[GLib.Property ("source")]
public Element Source {
get {
GLib.Value val = GetProperty ("source");
Element element = val.Val as Element;
val.Dispose ();
return element;
}
}
}
}