projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cc14f9
)
GstPad: make it possible to set flags (e.g. PadFlags.ProxyCaps)
author
Master T
<tom.deseyn@gmail.com>
Thu, 18 Sep 2014 07:54:19 +0000
(09:54 +0200)
committer
Stephan Sundermann
<stephansundermann@gmail.com>
Thu, 18 Sep 2014 13:05:46 +0000
(15:05 +0200)
sources/custom/Pad.cs
patch
|
blob
|
history
diff --git
a/sources/custom/Pad.cs
b/sources/custom/Pad.cs
index 4dce842b5c928540eb9f4c9cf50adaaee477f0ae..6b597b5d587e321860e4f618e4cc577d01df721b 100644
(file)
--- a/
sources/custom/Pad.cs
+++ b/
sources/custom/Pad.cs
@@
-30,5
+30,13
@@
namespace Gst {
return ret;
}
}
+ public new PadFlags Flags {
+ get {
+ return (PadFlags)base.Flags;
+ }
+ set {
+ base.Flags = (uint)value;
+ }
+ }
}
}