mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-31 20:48:56 +00:00
Pad: Fixed Caps property
This commit is contained in:
parent
6d7e41016e
commit
e1a6ddb198
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace Gst {
|
|||
public Gst.Caps Caps {
|
||||
get {
|
||||
GLib.Value val = GetProperty ("caps");
|
||||
Gst.Caps ret = new Gst.Caps ((IntPtr)val);
|
||||
Gst.Caps ret = (Gst.Caps) val.Val;
|
||||
val.Dispose ();
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue