6272b94c05
* sources/makefile: add gstreamer 0.6.4 sources * sources/gstreamer-parse.patch: fixes to parse gst * gst/Gst.metadata: new metadata * gst/Makefile.in: add gapi-fixup to Makefile * gst/gst-api.xml: new api file for 0.6.4 svn path=/trunk/gtk-sharp/; revision=19625
10 lines
269 B
Text
10 lines
269 B
Text
//
|
|
// Element.custom
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
public void SetProperty(string property_name, string value) {
|
|
GLib.Value val = new GLib.Value (value);
|
|
gst_element_set_property(Handle, property_name, val.Handle);
|
|
}
|